We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a469497 commit f8ce864Copy full SHA for f8ce864
1 file changed
src/qt-guilib/ui-components/Settings3D.qml
@@ -12,15 +12,29 @@ Item {
12
property alias lightX: lightX
13
property alias lightY: lightY
14
property alias lightZ: lightZ
15
-
+ property alias lightsEnabled: lightsEnabled
16
+
17
ColumnLayout {
18
+ Label {
19
+ text: qsTr('Lights enabled')
20
+ fontSizeMode: Text.Fit
21
+ font.pixelSize: 18
22
+ }
23
24
+ CheckBox {
25
+ id: lightsEnabled
26
+ checked: true
27
28
29
+ MenuSeparator { }
30
31
Label {
32
text: qsTr("Intensity")
33
fontSizeMode: Text.Fit
34
font.pixelSize: 18
35
}
36
37
38
Slider {
39
id: intensity
40
Layout.fillWidth: true
0 commit comments