Index: sources/gui/qml/pages/settings/SettingsLocalization.qml =================================================================== diff -u -r01a8c935f7d90ce3b168970765c0f20ea0c1a273 -redb8ee3edc41b1d324cd8a53e8e27a2a58289563 --- sources/gui/qml/pages/settings/SettingsLocalization.qml (.../SettingsLocalization.qml) (revision 01a8c935f7d90ce3b168970765c0f20ea0c1a273) +++ sources/gui/qml/pages/settings/SettingsLocalization.qml (.../SettingsLocalization.qml) (revision edb8ee3edc41b1d324cd8a53e8e27a2a58289563) @@ -19,6 +19,7 @@ // Qml imports import "qrc:/globals" import "qrc:/components" +import "qrc:/compounds" /*! * \brief SettingsROInput is the screen @@ -31,13 +32,22 @@ contentArea.anchors.topMargin: Variables.defaultMargin * 10 - contentItem: Item { id: _settingsLanguageItem - BaseComboBox { id: _settingsLanguageCombo - anchors.horizontalCenter : parent.horizontalCenter - width : 300 - height : 55 - currentIndex : vLocalization.languageIndex - model : vLocalization.languageList + contentItem: Item { + LabelUnitContainer { id: _settingsLanguageItem + anchors.horizontalCenter : parent.horizontalCenter + width : Variables.adjustmentLabelUnitContainerWidth + height : Variables.adjustmentLabelUnitContainerHeight + showUnit : false + text : qsTr("Language") + + contentItem: BaseComboBox { id: _settingsLanguageCombo + anchors.rightMargin : Variables.defaultMargin * 2 + anchors.leftMargin : anchors.rightMargin + anchors.topMargin : Variables.defaultMargin / 2 + anchors.bottomMargin: anchors.topMargin + currentIndex : vLocalization.languageIndex + model : vLocalization.languageList + } } }