aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/toppanel.qml
blob: 21095644669e4990f5668b95fa76f648a653b147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.11
import QtQuick.Window 2.11

Window {
    id: toppanel
    width: Screen.width
    height: Screen.height * (240.0 / 1920.0)
    flags: Qt.FramelessWindowHint
    visible: true
    //color: "#aaaa0000"

    TopArea {
    }
}