Fix toolbar hiding in quit segue
This commit is contained in:
parent
292cc579cf
commit
26d7946b4a
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue