Fixed small UI issues

This commit is contained in:
Michaël Lemaire 2015-09-09 00:08:01 +02:00
parent 647e185e52
commit 035c957054
2 changed files with 5 additions and 0 deletions

View file

@ -4,4 +4,5 @@ import QtQuick.Controls 1.2
Slider {
signal changed(real value)
onValueChanged: changed(value)
opacity: enabled ? 1.0 : 0.1
}

View file

@ -94,6 +94,10 @@ Item {
tooltip_widget.hovertext = "";
}
onClicked: {
if (button.checked && button.exclusiveGroup) {
return;
}
button.checked = !button.checked;
if (!button.toggle)
{