blob: a3a26313c5e74954a18b83fcc3723c67439eb9ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import "root:/config"
import QtQuick
Item {
id: root
visible: height > 0
implicitHeight: content.implicitHeight
implicitWidth: content.implicitWidth + BorderConfig.rounding
Content {
id: content
}
}
|