Index: sources/gui/qml/main.qml =================================================================== diff -u -rb80f8f84f21f86ad4c962a2c690447c572498e0b -ra471fb4ea8141e82e46344e00ec790410b09fceb --- sources/gui/qml/main.qml (.../main.qml) (revision b80f8f84f21f86ad4c962a2c690447c572498e0b) +++ sources/gui/qml/main.qml (.../main.qml) (revision a471fb4ea8141e82e46344e00ec790410b09fceb) @@ -342,26 +342,13 @@ anchors.top: parent.top } - SDCProgressItem { id: _sdcProgressItem - // TODO: disable this later. this is only for diagnostic purpose. - onDoubleClicked : { - if ( _GuiView.dryDemoMode ) { - let dryDemoTempID = 99 - let id = vConfirm.id - vConfirm.id = dryDemoTempID - vConfirm.doConfirm( true ) - vConfirm.id = id - } - else { - _diagnosticsDialog.open() - } - } - } - // keyboard should always be before AlarmItem to not to covet it. KeyboardItem { id: _keyboard } WiFiDialog { id: _wifiDialog } + StorageDialog { id: _storageDialog } + SettingsDialog { id: _settingsDialog } + InformationDialog { id: _informationDialog } LockDialog { id: _lockDialog } AlarmItem { id: _alarmItem ; z: 996 } PowerItem { id: _powerItem ; z: 997 } @@ -372,20 +359,13 @@ // then cannot be anchored. NotificationBar { id: _alarmBar anchors.bottom : _mainMenu.top - backgroundColor : _alarmItem.backgroundColor + color : _alarmItem.backgroundColor textColor : _alarmItem.textColor alarmID : _alarmItem.alarm_AlarmID text : _alarmItem.title textPixelSize : Fonts.fontPixelAlarmBarTitle isSilenced : _alarmItem.isSilenced timeout : _alarmItem.timeout - backgroundFading : vTDOpMode.fault z : 995 } - - GuiView { id: _GuiView - // Component.onCompleted: { - // console.debug("GuiView - complete") - // } - } }