mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-08 00:18:19 +02:00
12 lines
243 B
QML
12 lines
243 B
QML
import QtQuick 2.3
|
|
|
|
|
|
Rectangle {
|
|
SystemPalette { id: myPalette; colorGroup: SystemPalette.Active }
|
|
property int margin: 5
|
|
color: myPalette.window
|
|
border.color: myPalette.dark
|
|
border.width: 5
|
|
radius: border.width * 2
|
|
}
|
|
|