Index: sources/gui/qml/pages/SettingsHome.qml =================================================================== diff -u -r60db0ce19666f04ea58992a7670497d83f9bf7c4 -r08ab5b3dbe26b4c7b7bb2ac539b1cfd62a4676c7 --- sources/gui/qml/pages/SettingsHome.qml (.../SettingsHome.qml) (revision 60db0ce19666f04ea58992a7670497d83f9bf7c4) +++ sources/gui/qml/pages/SettingsHome.qml (.../SettingsHome.qml) (revision 08ab5b3dbe26b4c7b7bb2ac539b1cfd62a4676c7) @@ -101,13 +101,13 @@ SettingsBluetooth { id: _bluetooth - onClickedBack: pop() + onClickedBack: _settingsStack.pop() } SettingsWifi { id: _wifi - onClickedBack: pop() + onClickedBack: _settingsStack.pop() } @@ -117,13 +117,13 @@ // add each settings page here. SettingsItem { id: _item_bluetooth title : qsTr("Bluetooth") - onClicked: push(_bluetooth); + onClicked: _settingsStack.push(_bluetooth); } SettingsItem { id: _item_wifi title : qsTr("Wifi") onClicked: { - push(_wifi); + _settingsStack.push(_wifi); vNetworkModel.doScan() } }