[MPlayer-cvslog] r38549 - trunk/gui/dialog/playlist.c
ib
subversion at mplayerhq.hu
Sun Jun 9 14:20:54 EEST 2024
Author: ib
Date: Sun Jun 9 14:20:54 2024
New Revision: 38549
Log:
Do not append text to an already created playlist dialog.
The combo boxes may only be filled once, when the dialog is created.
Modified:
trunk/gui/dialog/playlist.c
Modified: trunk/gui/dialog/playlist.c
==============================================================================
--- trunk/gui/dialog/playlist.c Sun Jun 9 14:19:48 2024 (r38548)
+++ trunk/gui/dialog/playlist.c Sun Jun 9 14:20:54 2024 (r38549)
@@ -592,7 +592,11 @@ void ShowPlaylist( void )
{
plItem * next;
- if ( Playlist ) gtkRaise( Playlist );
+ if (Playlist)
+ {
+ gtkRaise(Playlist);
+ return;
+ }
else Playlist=CreatePlaylist();
if ( old_path && *old_path )
More information about the MPlayer-cvslog
mailing list