mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-30 06:11:09 -07:00
Make toggle button labels clickable
This commit is contained in:
parent
f0d4ea43c2
commit
7db0f0ebb7
1 changed files with 28 additions and 0 deletions
|
|
@ -417,6 +417,20 @@ Rectangle
|
||||||
text: ""
|
text: ""
|
||||||
color: UM.Theme.getColor("toggle_active_text")
|
color: UM.Theme.getColor("toggle_active_text")
|
||||||
font: UM.Theme.getFont("default")
|
font: UM.Theme.getFont("default")
|
||||||
|
|
||||||
|
MouseArea
|
||||||
|
{
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked:
|
||||||
|
{
|
||||||
|
modeToggleSwitch.checked = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Component.onCompleted:
|
||||||
|
{
|
||||||
|
clicked.connect(modeToggleSwitch.clicked)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
|
|
@ -454,6 +468,20 @@ Rectangle
|
||||||
text: ""
|
text: ""
|
||||||
color: UM.Theme.getColor("toggle_active_text")
|
color: UM.Theme.getColor("toggle_active_text")
|
||||||
font: UM.Theme.getFont("default")
|
font: UM.Theme.getFont("default")
|
||||||
|
|
||||||
|
MouseArea
|
||||||
|
{
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked:
|
||||||
|
{
|
||||||
|
modeToggleSwitch.checked = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
Component.onCompleted:
|
||||||
|
{
|
||||||
|
clicked.connect(modeToggleSwitch.clicked)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue