From d745be9c96c554c6aa09768064a318a0369990be Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Mon, 22 Sep 2025 21:45:22 -0400 Subject: [PATCH] Bar section editor: better icons for move across sections --- Modules/Settings/Bar/BarSectionEditor.qml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Modules/Settings/Bar/BarSectionEditor.qml b/Modules/Settings/Bar/BarSectionEditor.qml index 2652eff3..39dc62e3 100644 --- a/Modules/Settings/Bar/BarSectionEditor.qml +++ b/Modules/Settings/Bar/BarSectionEditor.qml @@ -164,20 +164,21 @@ NBox { NContextMenu { id: contextMenu parent: Overlay.overlay + width: 240 * scaling model: [{ - "label": "Move to Left", + "label": "Move to left section", "action": "left", - "icon": "arrow-left", + "icon": "arrow-bar-to-left", "visible": root.sectionId !== "left" }, { - "label": "Move to Center", + "label": "Move to center section", "action": "center", - "icon": "arrows-horizontal", + "icon": "layout-columns", "visible": root.sectionId !== "center" }, { - "label": "Move to Right", + "label": "Move to right section", "action": "right", - "icon": "arrow-right", + "icon": "arrow-bar-to-right", "visible": root.sectionId !== "right" }]