Index: sources/gui/qml/components/MainMenu.qml =================================================================== diff -u -r11cf98a0aae3c01a7e7608b0c9f8a4c2112ca997 -r56381aae237db191956aff493907cd1f0801216b --- sources/gui/qml/components/MainMenu.qml (.../MainMenu.qml) (revision 11cf98a0aae3c01a7e7608b0c9f8a4c2112ca997) +++ sources/gui/qml/components/MainMenu.qml (.../MainMenu.qml) (revision 56381aae237db191956aff493907cd1f0801216b) @@ -33,6 +33,7 @@ property int titlePixelSize : 40 property color backgroundColor : Colors.backgroundMainMenu property int highlightHeight : 10 + property int highlightWidth : 0 readonly property int currentScreen : model.get(index).screen ?? 0 width : parent.width @@ -75,7 +76,7 @@ bottomMargin: (height / 2) * -1 } height : _root.highlightHeight - width : parent.width / 2 + width : _root.highlightWidth ? _root.highlightWidth : parent.width / 2 radius : 10 color : Colors.backgroundButtonSelect }