Bugfixes. Wrong setting label, and better vertical bar support

This commit is contained in:
Corey Woodworth
2025-11-16 19:55:19 -05:00
parent 8ec6040c29
commit 064b894fbc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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