Rename drawAttention
to restoreFromTray
This commit is contained in:
parent
438b368be6
commit
4382edc8b0
|
@ -17,7 +17,7 @@ SystemTrayIcon {
|
|||
|
||||
onCountChanged: {
|
||||
if (count) {
|
||||
window.drawAttention()
|
||||
window.restoreFromTray()
|
||||
py.importModule("os", () => {
|
||||
py.call("os.remove", [get(0, "filePath")])
|
||||
})
|
||||
|
@ -34,7 +34,7 @@ SystemTrayIcon {
|
|||
if (reason === SystemTrayIcon.MiddleClick)
|
||||
Qt.quit()
|
||||
else if (reason !== SystemTrayIcon.Context)
|
||||
window.visible ? window.hide() : window.drawAttention()
|
||||
window.visible ? window.hide() : window.restoreFromTray()
|
||||
}
|
||||
|
||||
menu: Menu {
|
||||
|
@ -46,7 +46,7 @@ SystemTrayIcon {
|
|||
onTriggered:
|
||||
window.visible ?
|
||||
window.hide() :
|
||||
window.drawAttention()
|
||||
window.restoreFromTray()
|
||||
}
|
||||
|
||||
MenuItem {
|
||||
|
|
|
@ -65,7 +65,7 @@ ApplicationWindow {
|
|||
)
|
||||
}
|
||||
|
||||
function drawAttention() {
|
||||
function restoreFromTray() {
|
||||
window.show()
|
||||
window.raise()
|
||||
window.requestActivate()
|
||||
|
|
Loading…
Reference in New Issue
Block a user