mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-05 03:30:03 +00:00
Switched to qmlformat.
This commit is contained in:
+8
-8
@@ -79,20 +79,20 @@ RowLayout {
|
||||
hoverEnabled: true
|
||||
onEntered: {
|
||||
if (!enabled)
|
||||
return
|
||||
hovering = true
|
||||
root.entered()
|
||||
return;
|
||||
hovering = true;
|
||||
root.entered();
|
||||
}
|
||||
onExited: {
|
||||
if (!enabled)
|
||||
return
|
||||
hovering = false
|
||||
root.exited()
|
||||
return;
|
||||
hovering = false;
|
||||
root.exited();
|
||||
}
|
||||
onClicked: {
|
||||
if (!enabled)
|
||||
return
|
||||
root.toggled(!root.checked)
|
||||
return;
|
||||
root.toggled(!root.checked);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user