mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-05 10:07:43 +02:00
17 lines
240 B
QML
17 lines
240 B
QML
import QtQuick 2.5
|
|
|
|
import "."
|
|
import "../controls"
|
|
|
|
Frame {
|
|
id: frame
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
anchors.margins: -4096
|
|
visible: window.visible
|
|
color: "#7f7f7f7f";
|
|
radius: 3;
|
|
}
|
|
}
|
|
|