mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-03 19:01:50 +00:00
Bugfixes. Wrong setting label, and better vertical bar support
This commit is contained in:
@@ -452,7 +452,7 @@ Item {
|
||||
return model.name.substring(0, characterCount);
|
||||
}
|
||||
if (root.labelMode === "index+name") {
|
||||
return (model.idx.toString() + " " + model.name.substring(0, characterCount))
|
||||
return (model.idx.toString() + model.name.substring(0, 1))
|
||||
}
|
||||
}
|
||||
return model.idx.toString();
|
||||
|
||||
@@ -43,7 +43,7 @@ ColumnLayout {
|
||||
},
|
||||
{
|
||||
"key": "index+name",
|
||||
"name": I18n.tr("options.workspace-labels.name+index")
|
||||
"name": I18n.tr("options.workspace-labels.index+name")
|
||||
}
|
||||
]
|
||||
currentKey: widgetData.labelMode || widgetMetadata.labelMode
|
||||
|
||||
Reference in New Issue
Block a user