diff src/print.c @ 1029:1a4b18c58556

Use a constant for minimal window size. Set it to 32 for all dialogs.
author zas_
date Mon, 01 Sep 2008 17:29:07 +0000
parents fe82830ab8fd
children 0ab0deb0cfcc
line wrap: on
line diff
--- a/src/print.c	Mon Sep 01 17:22:19 2008 +0000
+++ b/src/print.c	Mon Sep 01 17:29:07 2008 +0000
@@ -3375,8 +3375,8 @@
 				       parent, FALSE,
 				       print_window_cancel_cb, pw);
 
-	geometry.min_width = 32;
-	geometry.min_height = 32;
+	geometry.min_width = DEFAULT_MINIMAL_WINDOW_SIZE;
+	geometry.min_height = DEFAULT_MINIMAL_WINDOW_SIZE;
 	geometry.base_width = PRINT_DLG_WIDTH;
 	geometry.base_height = PRINT_DLG_HEIGHT;
 	gtk_window_set_geometry_hints(GTK_WINDOW(pw->dialog->dialog), NULL, &geometry,