From 7e512b17f64b85390e189754081fb9a7994cd083 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sat, 2 Jul 2022 17:04:29 +0530 Subject: added score option to action menu --- ui/actions.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ui/actions.go') diff --git a/ui/actions.go b/ui/actions.go index 2600b21..b6bbf16 100644 --- a/ui/actions.go +++ b/ui/actions.go @@ -47,9 +47,7 @@ func AnimeActionMenu(animeIsAdded bool) func(a.Anime) { options := []AnimeAction { {"Set Status", "Set status for an anime (watching, dropped, etc)", AnimeStatusMenu}, {"Set Episodes", "Set number of episodes watched", EpisodeInput}, - // these only temporarily run AnimeStatusMenu - // because that functionality doesnt exist yet - // {"Set Score", "Set score", AnimeStatusMenu}, + {"Set Score", "Set score", AnimeScoreInput}, // {"Set Re-watching", "Set if re-watching", AnimeStatusMenu}, // {"Set Times Re-watched", "Set number of times re-watched", AnimeStatusMenu}, } @@ -104,9 +102,7 @@ func MangaActionMenu(mangaIsAdded bool) func(m.Manga) { options := []MangaAction { {"Set Status", "Set status for a manga (reading, dropped, etc)", MangaStatusMenu}, {"Set Chapters", "Set number of chapters read", ChapterInput}, - // these only temporarily run MangaStatusMenu - // because that functionality doesnt exist yet - // {"Set Score", "Set score", MangaStatusMenu}, + {"Set Score", "Set score", MangaScoreInput}, // {"Set Re-reading", "Set if re-reading", MangaStatusMenu}, // {"Set Times Re-read", "Set number of times re-read", MangaStatusMenu}, } -- cgit v1.2.3