From 2728873a95b6946633eb8fc8be4ecfa7093fb3dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Thu, 12 Mar 2015 18:06:28 +0100 Subject: [PATCH] (XMB) Fix the icon bug --- menu/drivers/xmb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index be30d26ea6..f3e2de8749 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -1791,7 +1791,8 @@ static void xmb_context_reset(void) static void xmb_navigation_clear(bool pending_push) { - xmb_selection_pointer_changed(); + if (!pending_push) + xmb_selection_pointer_changed(); } static void xmb_navigation_decrement(void)