mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-01-24 00:25:06 +00:00
Fix warning when quitting app after streaming is enabled
This commit is contained in:
parent
8cf6a8bc98
commit
12535d8142
1 changed files with 4 additions and 2 deletions
|
@ -39,8 +39,10 @@ Item {
|
|||
// Connect the quit completion signal
|
||||
ComputerManager.quitAppCompleted.connect(quitAppCompleted)
|
||||
|
||||
// Start the quit operation
|
||||
quitRunningAppFn()
|
||||
// Start the quit operation if requested
|
||||
if (quitRunningAppFn) {
|
||||
quitRunningAppFn()
|
||||
}
|
||||
}
|
||||
|
||||
StackView.onDeactivating: {
|
||||
|
|
Loading…
Reference in a new issue