From 26d7946b4a0264948fa8ccc4b471dd8bb635d3af Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 2 Mar 2019 14:13:14 -0800 Subject: [PATCH] Fix toolbar hiding in quit segue --- app/gui/QuitSegue.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/gui/QuitSegue.qml b/app/gui/QuitSegue.qml index 5375e675..1958ff95 100644 --- a/app/gui/QuitSegue.qml +++ b/app/gui/QuitSegue.qml @@ -29,9 +29,6 @@ Item { stackView.replace(segue) } else { - // Show the toolbar again - toolBar.visible = true - // Exit this view stackView.pop() } @@ -46,6 +43,9 @@ Item { } StackView.onDeactivating: { + // Show the toolbar again + toolBar.visible = true + // Disconnect the signal ComputerManager.quitAppCompleted.disconnect(quitAppCompleted) }