summaryrefslogtreecommitdiffstats
path: root/views/calendar
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-07 12:59:49 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-15 00:02:09 +0200
commit0e6d0bfaf5f1dd2e7aa4fc210160c62658be1458 (patch)
treea95781274b97856ca4220928ab8782c9c230be50 /views/calendar
parentea6ba98e19f970dc56fb762085aec35915681718 (diff)
downloadkube-0e6d0bfaf5f1dd2e7aa4fc210160c62658be1458.tar.gz
kube-0e6d0bfaf5f1dd2e7aa4fc210160c62658be1458.zip
Invert the calendar filter so all calendars are enabled by default
unless explicitly disabled.
Diffstat (limited to 'views/calendar')
-rw-r--r--views/calendar/qml/View.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/calendar/qml/View.qml b/views/calendar/qml/View.qml
index ac446b88..529f165f 100644
--- a/views/calendar/qml/View.qml
+++ b/views/calendar/qml/View.qml
@@ -132,8 +132,8 @@ RowLayout {
132 spacing: Kube.Units.smallSpacing 132 spacing: Kube.Units.smallSpacing
133 Kube.CheckBox { 133 Kube.CheckBox {
134 opacity: 0.9 134 opacity: 0.9
135 checked: model.checked 135 checked: !model.checked
136 onToggled: model.checked = checked 136 onToggled: model.checked = !checked
137 } 137 }
138 Kube.Label { 138 Kube.Label {
139 text: model.name 139 text: model.name