Index: sources/gui/qml/components/MainMenu.qml =================================================================== diff -u -r712f4c8a1b2382919300895b4422b831471044a3 -r77ba0083b790f7c1c851c60ecaeaa4f2e7eff7a8 --- sources/gui/qml/components/MainMenu.qml (.../MainMenu.qml) (revision 712f4c8a1b2382919300895b4422b831471044a3) +++ sources/gui/qml/components/MainMenu.qml (.../MainMenu.qml) (revision 77ba0083b790f7c1c851c60ecaeaa4f2e7eff7a8) @@ -40,6 +40,7 @@ property int currentIndex : 0 property string currentTitle : titles[currentIndex] property bool disable : false + property int titlePixelSize : 40 /*! * \brief Emits when a menu item pressed @@ -106,7 +107,7 @@ anchors.fill: parent } - ImageLogoDDT { id: _image + ImageLogoDDarkTransparent { id: _image visible: hasLogo anchors.centerIn: parent } @@ -127,7 +128,7 @@ height : parent.height text.text : isItemVisible(index) ? modelData : "" // didn't change the visibility to preserve the button location and just didn't display the title and highlihgt bar. border.width: 0 - pixelSize : 40 //// ----- @LEAHIZED + pixelSize : titlePixelSize //// ----- @LEAHIZED onPressed: { emit_itemPressed(index) }