Commit 5b1433c3 authored by Ludovic Fauvet's avatar Ludovic Fauvet Committed by Jean-Baptiste Kempf

Fix a little bug in recents media menu.

When cleared the menu was not refreshed.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent c18658f2
...@@ -89,7 +89,7 @@ void RecentsMRL::clear() ...@@ -89,7 +89,7 @@ void RecentsMRL::clear()
if ( stack->isEmpty() ) if ( stack->isEmpty() )
return; return;
stack->clear(); stack->clear();
if( !isActive ) QVLCMenu::updateRecents( p_intf ); if( isActive ) QVLCMenu::updateRecents( p_intf );
save(); save();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment