Index: sources/gui/qml/pages/SettingsHome.qml =================================================================== diff -u -r56e378f7504701b9e9a9dccaf205aef2fd52c58e -r0470ff6f209ff0c5089f8f0849b6da04f60f8f41 --- sources/gui/qml/pages/SettingsHome.qml (.../SettingsHome.qml) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) +++ sources/gui/qml/pages/SettingsHome.qml (.../SettingsHome.qml) (revision 0470ff6f209ff0c5089f8f0849b6da04f60f8f41) @@ -28,6 +28,7 @@ * which is the default screen in the "Settings" stack */ ScreenItem { id: _root + backgroundRect.color: Colors.backgroundMenu USBButton { id: _usbButton anchors { top : parent.top @@ -63,9 +64,9 @@ _GuiView.doActionTransmit(GuiActions.ID_PowerOff, GuiActions.NoData) } } -} -/* + + TitleText { id: _titleText anchors.horizontalCenter: parent.horizontalCenter; anchors.top: parent.top @@ -77,21 +78,30 @@ } + /* Diagnostics { id: _diagnostics onBackClicked: pop() } + */ + SettingsBluetooth { + id: _bluetooth + onClickedBack: pop() + + } + Column { anchors.centerIn: parent; // add each settings page here. - SettingsItem { id: _item_diagnostics - title : qsTr("Diagnostics") - onClicked: push(_diagnostics); + SettingsItem { id: _item_bluetooth + title : qsTr("Bluetooth") + onClicked: push(_bluetooth); + } } -*/ +}