mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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;
|
|
}
|
|
}
|
|
|