[Events] Add toast hint to mark as done button.

This commit is contained in:
Kuba Szczodrzyński 2020-03-30 23:28:50 +02:00
parent b794b30346
commit ee5566d1ef
2 changed files with 5 additions and 0 deletions

View File

@ -148,6 +148,10 @@ class EventDetailsDialog(
openInCalendar()
}
b.checkDoneButton.setOnLongClickListener {
Toast.makeText(activity, R.string.hint_mark_as_done, Toast.LENGTH_SHORT).show()
true
}
b.goToTimetableButton.setOnLongClickListener {
Toast.makeText(activity, R.string.hint_go_to_timetable, Toast.LENGTH_SHORT).show()
true

View File

@ -1280,4 +1280,5 @@
<string name="menu_add_remove_cards">Dodaj lub usuń karty</string>
<string name="menu_template">Template</string>
<string name="messages_attachment_download_again">Pobierz ponownie</string>
<string name="hint_mark_as_done">Oznacz jako wykonane</string>
</resources>