mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
19 lines
282 B
QML
19 lines
282 B
QML
|
import QtQuick
|
||
|
|
||
|
import Status.Application
|
||
|
|
||
|
/**
|
||
|
QML entry point with minimal responsibilities
|
||
|
*/
|
||
|
StatusWindow {
|
||
|
id: root
|
||
|
|
||
|
StatusTrayIcon {
|
||
|
onShowApplication: {
|
||
|
root.show()
|
||
|
root.raise()
|
||
|
root.requestActivate()
|
||
|
}
|
||
|
}
|
||
|
}
|