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 b031417 commit 5a724f6Copy full SHA for 5a724f6
AnkiDroid/src/main/java/com/ichi2/anki/NoteEditorFragment.kt
@@ -1432,6 +1432,8 @@ class NoteEditorFragment :
1432
// Hide add note item if fragment is in fragmented activity
1433
// because this item is already present in CardBrowser
1434
menu.findItem(R.id.action_add_note_from_note_editor).isVisible = !inFragmentedActivity
1435
+ // Hide save button when in fragmented activity to prevent duplicate save button
1436
+ menu.findItem(R.id.action_save).isVisible = !inFragmentedActivity
1437
}
1438
if (editFields != null) {
1439
for (i in editFields!!.indices) {
0 commit comments