fix ToggleHeaders in settings window

pull/5/head
Michail Vourlakos 6 years ago
parent 5665efd31f
commit ea1a7ae9f2

@ -109,10 +109,14 @@ Item {
PlasmaComponents.Button {
//tooltip ghost
anchors.fill: parent
anchors.fill: textElement
tooltip: item.tooltip
opacity: 0
onPressedChanged: item.pressed();
onPressedChanged: {
if (pressed) {
item.pressed();
}
}
}
}
@ -129,7 +133,11 @@ Item {
anchors.fill: parent
tooltip: item.tooltip
opacity: 0
onPressedChanged: item.pressed();
onPressedChanged: {
if (pressed) {
item.pressed();
}
}
}
}
}

Loading…
Cancel
Save