aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/toppanel.qml
blob: 957b9570c85aadbb73217c04c6b24ce161b909a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.13
import QtQuick.Window 2.13
import QtQuick.Controls 2.13

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

    TopArea {
    }
}