wnotificationcenter: somewhat working calendar

This commit is contained in:
end-4
2025-11-24 22:45:54 +01:00
parent 616c1dfe3a
commit 9053927480
6 changed files with 108 additions and 7 deletions
@@ -23,7 +23,7 @@ Button {
if (root.checked) {
if (root.down) {
return root.colBackgroundToggledActive;
} else if (root.hovered && !root.down) {
} else if (root.hovered) {
return root.colBackgroundToggledHover;
} else {
return root.colBackgroundToggled;
@@ -31,7 +31,7 @@ Button {
}
if (root.down) {
return root.colBackgroundActive;
} else if (root.hovered && !root.down) {
} else if (root.hovered) {
return root.colBackgroundHover;
} else {
return root.colBackground;