Index: sources/gui/qml/pages/settings/SettingsLocalization.qml =================================================================== diff -u -r1f9e84f74ead9e10577c8caa204c6eb911e12ab8 -r1286d74bd015276aab604808be2766136091c125 --- sources/gui/qml/pages/settings/SettingsLocalization.qml (.../SettingsLocalization.qml) (revision 1f9e84f74ead9e10577c8caa204c6eb911e12ab8) +++ sources/gui/qml/pages/settings/SettingsLocalization.qml (.../SettingsLocalization.qml) (revision 1286d74bd015276aab604808be2766136091c125) @@ -51,13 +51,13 @@ } onConfirmClicked : { - _confirmDialog.titleText = _headerBar.titleText + _confirmDialog.titleText = _root.headerTitle _confirmDialog.open() } Connections { target: _confirmDialog function onAccepted() { - if ( _confirmDialog.titleText === _headerBar.titleText ) { // use the title as the indication of what has been confirmed and if that is related to this function. + if ( _confirmDialog.titleText === _root.headerTitle ) { // use the title as the indication of what has been confirmed and if that is related to this function. vLocalization.doAdjustment(_settingsLanguageCombo.currentIndex) } }