Commit add30359 authored by Don Gagne's avatar Don Gagne

Merge pull request #3157 from DonLakeFlyer/AutoHideChange

Guided Bar: AutoHide on short screens only
parents 522041de ffe70812
......@@ -328,7 +328,12 @@ Item {
id: guidedModeHideTimer
interval: 7000
running: true
onTriggered: _guidedModeBar.state = "Hidden"
onTriggered: {
if (ScreenTools.isShortScreen) {
_guidedModeBar.state = "Hidden"
}
}
}
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