Commit ffe70812 authored by Don Gagne's avatar Don Gagne

AutoHide on short screens only

parent e89453d4
...@@ -328,7 +328,12 @@ Item { ...@@ -328,7 +328,12 @@ Item {
id: guidedModeHideTimer id: guidedModeHideTimer
interval: 7000 interval: 7000
running: true running: true
onTriggered: _guidedModeBar.state = "Hidden"
onTriggered: {
if (ScreenTools.isShortScreen) {
_guidedModeBar.state = "Hidden"
}
}
} }
readonly property int confirmHome: 1 readonly property int confirmHome: 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment