From 51a5123f5e7557d8b4b358fae77f5ed0590b217a Mon Sep 17 00:00:00 2001 From: Christian Soffke Date: Sat, 11 May 2024 16:05:45 +0200 Subject: shortcuts: 'browse' type: fix ignored name field see https://forums.rockbox.org/index.php/topic,54619.0.html Change-Id: I9615ec9ee2e058a67199db96e16cd7008daf0891 --- apps/shortcuts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/shortcuts.c b/apps/shortcuts.c index 4833b65c74..0c5e285885 100644 --- a/apps/shortcuts.c +++ b/apps/shortcuts.c @@ -427,7 +427,7 @@ static const char * shortcut_menu_get_name(int selected_item, void * data, /* No translation support as only soft_shutdown has LANG_SHUTDOWN defined */ return type_strings[SHORTCUT_SHUTDOWN]; } - else if (sc->type == SHORTCUT_BROWSER && (sc->u.path)[0] != '\0') + else if (sc->type == SHORTCUT_BROWSER && sc->name[0] == '\0' && (sc->u.path)[0] != '\0') { char* pos; if (path_basename(sc->u.path, (const char **)&pos) > 0) -- cgit v1.2.3