Change m.notice background color.

This commit is contained in:
Black Hat
2018-09-06 21:00:58 +08:00
parent 96874cba06
commit a189927b67
2 changed files with 12 additions and 3 deletions

View File

@@ -36,7 +36,16 @@ ApplicationWindow {
Controller {
id: matriqueController
onToggleWindow: window.visible ? window.hide() : window.show()
onToggleWindow: {
console.log("Activating window...")
if (window.visible) {
window.hide()
} else {
window.show()
window.raise()
window.requestActivate()
}
}
}
Popup {