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

Window {
    id: bottompanel
    width: Screen.width
    height: Screen.height * (215.0 / 1920.0)
    flags: Qt.FramelessWindowHint
    visible: true
    //color: "#aaaa0000"
    MediaArea {
    }
}