From 5b1433c3bda6baf58f93f67d2114f8ce84e43c6c Mon Sep 17 00:00:00 2001 From: Ludovic Fauvet Date: Mon, 30 Mar 2009 00:58:03 +0200 Subject: [PATCH] Fix a little bug in recents media menu. When cleared the menu was not refreshed. Signed-off-by: Jean-Baptiste Kempf --- modules/gui/qt4/recents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/qt4/recents.cpp b/modules/gui/qt4/recents.cpp index 7cdf80ec9b..82a20e137c 100644 --- a/modules/gui/qt4/recents.cpp +++ b/modules/gui/qt4/recents.cpp @@ -89,7 +89,7 @@ void RecentsMRL::clear() if ( stack->isEmpty() ) return; stack->clear(); - if( !isActive ) QVLCMenu::updateRecents( p_intf ); + if( isActive ) QVLCMenu::updateRecents( p_intf ); save(); } -- 2.39.5