changeset 1610:5119f2123bcf trunk

[svn] - same to r2149, one more window. :)
author yaz
date Wed, 30 Aug 2006 02:37:40 -0700
parents fb2ac7c9e096
children 694d3edcd208
files ChangeLog audacious/ui_playlist.c
diffstat 2 files changed, 13 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Aug 29 23:15:43 2006 -0700
+++ b/ChangeLog	Wed Aug 30 02:37:40 2006 -0700
@@ -1,3 +1,13 @@
+2006-08-30 06:15:43 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
+  revision [2149]
+  - comment out some gtk_window_set_transient_for() which hide mainwin unexpectedly.
+  
+
+  Changes:        Modified:
+  +3 -2           trunk/audacious/equalizer.c  
+  +2 -1           trunk/audacious/prefswin.c  
+
+
 2006-08-30 02:55:37 +0000  George Averill <nhjm449@gmail.com>
   revision [2147]
   - Add ability to show/hide main player window.
--- a/audacious/ui_playlist.c	Tue Aug 29 23:15:43 2006 -0700
+++ b/audacious/ui_playlist.c	Wed Aug 30 02:37:40 2006 -0700
@@ -1693,8 +1693,9 @@
                                                  GTK_WINDOW(playlistwin),
                                                  cfg.show_wm_decorations);
 
-    gtk_window_set_transient_for(GTK_WINDOW(playlistwin),
-                                 GTK_WINDOW(mainwin));
+    /* this will hide only mainwin. it's annoying! yaz */
+//    gtk_window_set_transient_for(GTK_WINDOW(playlistwin),
+//                                 GTK_WINDOW(mainwin));
     gtk_window_set_skip_taskbar_hint(GTK_WINDOW(playlistwin), TRUE);
 
     icon = gdk_pixbuf_new_from_xpm_data((const gchar **) bmp_playlist_icon);