summaryrefslogtreecommitdiffstats
path: root/apps/bookmark.c
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2022-12-05 07:28:21 +0100
committerChristian Soffke <christian.soffke@gmail.com>2022-12-05 07:28:21 +0100
commitd3d2045cab55f3bb127c74d8f24e54b0e8095fe2 (patch)
tree75dfae97468d2b561322fc4f16b6b4f8fa81a22d /apps/bookmark.c
parent1e6c8d2ea684e8a8e7a5f2cc08858c2ba2c15387 (diff)
downloadrockbox-d3d2045cab55f3bb127c74d8f24e54b0e8095fe2.tar.gz
rockbox-d3d2045cab55f3bb127c74d8f24e54b0e8095fe2.zip
Bookmarks: Fix redraw issue in Select Bookmarks screen
Parts of the skin weren't redrawn after deleting a bookmark. Change-Id: Id06fb95a6d3740340df989bcb9827fe3a87bb296
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r--apps/bookmark.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 961a14043c..97a8e648e1 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -938,6 +938,8 @@ static int select_bookmark(const char* bookmark_file_name,
}
buffer_bookmarks(bookmarks, bookmarks->start);
+ gui_synclist_set_title(&list, str(LANG_BOOKMARK_SELECT_BOOKMARK),
+ Icon_Bookmark);
gui_synclist_draw(&list);
cond_talk_ids_fq(VOICE_EXT_BMARK);
gui_synclist_speak_item(&list);