Merge pull request #1775 from DorianK29/version/3.6

#1601 - Widget checkbox fix
This commit is contained in:
Phillip Thelen 2022-05-27 10:05:51 +02:00 committed by GitHub
commit 45103f55e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,7 +94,7 @@ abstract class TaskListFactory internal constructor(
remoteView.setInt(R.id.checkbox_background, "setBackgroundResource", task.lightTaskColor)
val fillInIntent = Intent()
fillInIntent.putExtra(TaskListWidgetProvider.TASK_ID_ITEM, task.id)
remoteView.setOnClickFillInIntent(R.id.widget_list_row, fillInIntent)
remoteView.setOnClickFillInIntent(R.id.checkbox_background, fillInIntent)
}
return remoteView
}