changeset 1735:1a7b9b96d9d7

Minor layout changes to the test program so all buttons are visible on OS/2 without reszing the window.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 16 May 2012 19:18:25 +0000
parents b7165e93628c
children 43accf95bdc3
files dwtest.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/dwtest.c	Wed May 16 18:39:05 2012 +0000
+++ b/dwtest.c	Wed May 16 19:18:25 2012 +0000
@@ -1229,7 +1229,7 @@
     calbox = dw_box_new(DW_HORZ, 0);
     dw_box_pack_start(notebookbox5, calbox, 500, 200, TRUE, TRUE, 1);
     cal = dw_calendar_new(100);
-    dw_box_pack_start(calbox, cal, 180, 160, TRUE, TRUE, 0);
+    dw_box_pack_start(calbox, cal, 180, 120, TRUE, TRUE, 0);
     /*
      dw_calendar_set_date(cal, 2001, 1, 1);
      */
@@ -1716,7 +1716,7 @@
 
     dw_signal_connect(mainwindow, DW_SIGNAL_DELETE, DW_SIGNAL_FUNC(exit_callback), DW_POINTER(mainwindow));
     timerid = dw_timer_connect(2000, DW_SIGNAL_FUNC(timer_callback), 0);
-    dw_window_set_size(mainwindow, 640, 520);
+    dw_window_set_size(mainwindow, 640, 550);
     dw_window_show(mainwindow);
 
     /* Now that the window is created and shown...