0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-19 19:42:17 +02:00

fix export menu item

cause: aabd99dc4e
This commit is contained in:
MorenoTropical 2024-09-08 20:08:45 -03:00 committed by lukstbit
parent 164faf65bb
commit 9498a3f578

View File

@ -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)
}
}