]> Pileus Git - ~andy/gtk/commitdiff
Avoid underallocations in the custom paper dialog
authorMatthias Clasen <mclasen@redhat.com>
Fri, 10 Jun 2011 04:15:10 +0000 (00:15 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 10 Jun 2011 04:17:56 +0000 (00:17 -0400)
gtk/gtkcustompaperunixdialog.c

index 500ccad4b5beb27dbb1f0efc1145be3115676558..ffa1adde8edf7d4199f32649214cf24f060e1108 100644 (file)
@@ -376,7 +376,7 @@ _gtk_custom_paper_unix_dialog_new (GtkWindow   *parent,
                          "transient-for", parent,
                          "modal", parent != NULL,
                          "destroy-with-parent", TRUE,
-                         //"resizable", FALSE,
+                         "resizable", FALSE,
                          NULL);
 
   return result;
@@ -1214,6 +1214,5 @@ populate_dialog (GtkCustomPaperUnixDialog *dialog)
     }
 
   gtk_window_present (GTK_WINDOW (dialog));
-
   load_print_backends (dialog);
 }