[MPlayer-cvslog] r38547 - trunk/gui/dialog/equalizer.c

ib subversion at mplayerhq.hu
Sun Jun 9 14:19:11 EEST 2024


Author: ib
Date: Sun Jun  9 14:19:11 2024
New Revision: 38547

Log:
Do not append text to an already created equalizer configuration dialog.

The combo boxes may only be filled once, when the dialog is created.

Modified:
   trunk/gui/dialog/equalizer.c

Modified: trunk/gui/dialog/equalizer.c
==============================================================================
--- trunk/gui/dialog/equalizer.c	Sun Jun  9 14:16:37 2024	(r38546)
+++ trunk/gui/dialog/equalizer.c	Sun Jun  9 14:19:11 2024	(r38547)
@@ -537,7 +537,11 @@ void ShowEquConfig( void )
 {
  GSList *Items = NULL, *list;
 
- if ( EquConfig ) gtkRaise( EquConfig );
+ if (EquConfig)
+ {
+   gtkRaise(EquConfig);
+   return;
+ }
     else EquConfig=CreateEquConfig();
 
  Items = g_slist_append(Items, _(MSGTR_GUI_FrontRight));


More information about the MPlayer-cvslog mailing list