Skip to content

Commit

Permalink
fix export menu item
Browse files Browse the repository at this point in the history
cause: aabd99d
  • Loading branch information
MorenoTropical committed Sep 8, 2024
1 parent 6bd0114 commit 3f18389
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions AnkiDroid/src/main/java/com/ichi2/anki/DeckPicker.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,11 @@ open class DeckPicker :
showDatabaseErrorDialog(DatabaseErrorDialogType.DIALOG_CONFIRM_RESTORE_BACKUP)
return true
}
R.id.action_export_collection -> {
Timber.i("DeckPicker:: Export menu item selected")
ExportDialogFragment.newInstance().show(supportFragmentManager, "exportDialog")
return true
}
else -> return super.onOptionsItemSelected(item)
}
}
Expand Down

0 comments on commit 3f18389

Please sign in to comment.