From dc0661918d8d3fd98e86c781795da481d0103b7d Mon Sep 17 00:00:00 2001 From: Jonas Lochmann Date: Mon, 9 Aug 2021 02:00:00 +0200 Subject: [PATCH] Fix reseting the wrong checkbox in the parent notification settings --- .../android/ui/manage/parent/ManageParentNotifications.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/io/timelimit/android/ui/manage/parent/ManageParentNotifications.kt b/app/src/main/java/io/timelimit/android/ui/manage/parent/ManageParentNotifications.kt index a13a100..702b2a2 100644 --- a/app/src/main/java/io/timelimit/android/ui/manage/parent/ManageParentNotifications.kt +++ b/app/src/main/java/io/timelimit/android/ui/manage/parent/ManageParentNotifications.kt @@ -1,5 +1,5 @@ /* - * TimeLimit Copyright 2019 Jonas Lochmann + * TimeLimit Copyright 2019 - 2021 Jonas Lochmann * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -71,7 +71,7 @@ object ManageParentNotifications { ) { // it worked } else { - view.manipulationCheckbox.isChecked = tasks + view.taskCheckbox.isChecked = tasks } } }