Skip to content

Commit

Permalink
Allow running app in background from start page menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Martchus committed Jan 11, 2025
1 parent 2c7665d commit 7633201
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tray/gui/qml/StartPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,11 @@ Page {
text: qsTr("Shutdown")
icon.source: App.faUrlBase + "power-off"
onTriggered: (source) => App.connection.shutdown()
},
Action {
text: qsTr("Run in background")
icon.source: App.faUrlBase + "window-minimize"
onTriggered: (source) => App.minimize()
}
]
}

0 comments on commit 7633201

Please sign in to comment.