blob: 27b92197ef77b111d780aec81c804b49236a9714 (
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
Content {
id: content
}
}
|