We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce72558 commit 60fb6ceCopy full SHA for 60fb6ce
AnkiDroid/src/main/java/com/ichi2/anki/dialogs/customstudy/CustomStudyDialog.kt
@@ -296,7 +296,10 @@ class CustomStudyDialog : AnalyticsDialogFragment() {
296
}
297
298
299
- val canChooseTags = (deferredDefaults.isCompleted || deferredDefaults.getCompleted().tags.isNotEmpty()) && contextMenuOption == STUDY_TAGS
+ val canChooseTags =
300
+ deferredDefaults.isCompleted &&
301
+ deferredDefaults.getCompleted().tags.isNotEmpty() &&
302
+ contextMenuOption == STUDY_TAGS
303
304
val editText =
305
v.findViewById<EditText>(R.id.custom_study_details_edittext2).apply {
0 commit comments