We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MouseArea
1 parent fc5e85a commit fdcf35cCopy full SHA for fdcf35c
meshroom/ui/qml/Controls/ExpandableGroup.qml
@@ -22,21 +22,24 @@ GroupBox {
22
topPadding: label.height + padding
23
background: Item {}
24
25
+ MouseArea {
26
+ parent: paneLabel
27
+ anchors.fill: parent
28
+ onClicked: function(mouse) {
29
+ expandButton.checked = !expandButton.checked
30
+ }
31
32
+
33
label: Pane {
34
+ id: paneLabel
35
+ padding: 2
36
+ width: root.width
37
38
background: Rectangle {
39
id: labelBg
40
color: palette.base
41
opacity: 0.8
-
- MouseArea {
- anchors.fill: parent
- onClicked: {
- expandButton.checked = !expandButton.checked
- }
42
}
- padding: 2
- width: root.width
43
44
RowLayout {
45
width: parent.width
0 commit comments