From cf58c09d6e1e1aa0e8539457d9e90be4d814164d Mon Sep 17 00:00:00 2001 From: jdgleaver Date: Sat, 4 Jan 2020 14:26:57 +0000 Subject: [PATCH] (XMB/Ozone) Fix 'quick menu' detection --- menu/drivers/ozone/ozone.c | 3 ++- menu/drivers/xmb.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/menu/drivers/ozone/ozone.c b/menu/drivers/ozone/ozone.c index f96621921d..019fb4c59e 100644 --- a/menu/drivers/ozone/ozone.c +++ b/menu/drivers/ozone/ozone.c @@ -1812,7 +1812,8 @@ static void ozone_populate_entries(void *data, const char *path, const char *lab ozone->is_playlist = ozone_is_playlist(ozone, true); ozone->is_db_manager_list = string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_DATABASE_MANAGER_LIST)); ozone->is_file_list = string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_FAVORITES)); - ozone->is_quick_menu = string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS)); + ozone->is_quick_menu = string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS)) || + string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_CONTENT_SETTINGS)); if (ozone->categories_selection_ptr == ozone->categories_active_idx_old) { diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index f1891bbc33..92526f5d48 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -2252,7 +2252,8 @@ static void xmb_populate_entries(void *data, xmb->is_file_list = string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_FAVORITES)); /* Determine whether this is the quick menu */ - xmb->is_quick_menu = string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS)); + xmb->is_quick_menu = string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS)) || + string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_CONTENT_SETTINGS)); if (menu_driver_ctl(RARCH_MENU_CTL_IS_PREVENT_POPULATE, NULL)) {