Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Commit

Permalink
Merge pull request #455 from ubports/xenial_-_fixsuperkeyfocus
Browse files Browse the repository at this point in the history
qml: Unfocus launcher when dismissing Drawer
  • Loading branch information
Flohack74 authored Oct 20, 2022
2 parents 9e34d82 + 6f25d25 commit 2e8dad4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions qml/Launcher/Launcher.qml
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,14 @@ FocusScope {
onOpenRequested: {
root.toggleDrawer(false, true);
}

onFullyClosedChanged: {
if (!fullyClosed)
return

drawer.unFocusInput()
root.focus = false
}
}

LauncherPanel {
Expand Down

0 comments on commit 2e8dad4

Please sign in to comment.