Author: kelnos
Date: 2008-11-13 03:27:47 +0000 (Thu, 13 Nov 2008)
New Revision: 28784

Modified:
   xfce4-settings/trunk/NEWS
   xfce4-settings/trunk/xfce4-settings-manager/xfce-settings-manager-dialog.c
Log:
set dialog type hint to 'normal', since it really is just a normal
window, and should have a minimize action (bug 4596)

Modified: xfce4-settings/trunk/NEWS
===================================================================
--- xfce4-settings/trunk/NEWS   2008-11-12 18:42:25 UTC (rev 28783)
+++ xfce4-settings/trunk/NEWS   2008-11-13 03:27:47 UTC (rev 28784)
@@ -1,7 +1,11 @@
+4.5.90.0 (Xfce 4.6 rc1)
+
+  * Allow the settings manager window to be minimized (bug 4596).
+
 4.5.92 (Xfce 4.6 beta2)
 
   * Add an option to disable keyboard settings.
-  * Default to "Rodent" icon theme instead of "hicolor" (Bug #4545)
+  * Default to "Rodent" icon theme instead of "hicolor" (Bug 4545).
   * Use XfcePosixSignalHandler in xfce4-settings-helper to handle
     signals, since calling gtk_main_quit() from a signal handler may
     not be safe.
@@ -18,13 +22,11 @@
     on the X-XfcePluggable and X-XfceHelpFile desktop file keys).
   * Add embedding support to the accessibility, appearance, mouse and
     keyboard settings dialogs.
-  * Don't use g_hash_table_get_keys() which requires GLib 2.14 (bug 
-    #4377).
+  * Don't use g_hash_table_get_keys() which requires GLib 2.14 (bug 4377).
   * Move xfsettingsd from xfconf into xfce4-settings.
   * Rework the way keyboard shortcuts are organized. Support default
     shortcuts using /default and /custom base properties.
-  * Add optional UI options to enable/disable sounds in Canberra (bug
-    #4367).
+  * Add optional UI options to enable/disable sounds in Canberra (bug 4367).
   * Add GUI for selecting/changing the keyboard layout.
   * Translation updates: Dutch, Finnish, German.
 

Modified: 
xfce4-settings/trunk/xfce4-settings-manager/xfce-settings-manager-dialog.c
===================================================================
--- xfce4-settings/trunk/xfce4-settings-manager/xfce-settings-manager-dialog.c  
2008-11-12 18:42:25 UTC (rev 28783)
+++ xfce4-settings/trunk/xfce4-settings-manager/xfce-settings-manager-dialog.c  
2008-11-13 03:27:47 UTC (rev 28784)
@@ -168,9 +168,10 @@
 
     xfce_titled_dialog_set_subtitle(XFCE_TITLED_DIALOG(dialog),
                                     dialog->default_subtitle);
+    gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
     gtk_window_set_title(GTK_WINDOW(dialog), dialog->default_title);
     gtk_window_set_icon_name(GTK_WINDOW(dialog), dialog->default_icon);
-    gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
+    gtk_window_set_type_hint(GTK_WINDOW(dialog), GDK_WINDOW_TYPE_HINT_NORMAL);
 
     dialog->content_frame = gtk_vbox_new(FALSE, 0);
     gtk_widget_show(dialog->content_frame);

_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to