Update of /cvsroot/htoolkit/port/src/cbits/GTK
In directory sc8-pr-cvs1:/tmp/cvs-serv1230/port/src/cbits/GTK
Modified Files:
Window.c
Log Message:
Improved dynamic layout for GroupBox and Notebook
Index: Window.c
===================================================================
RCS file: /cvsroot/htoolkit/port/src/cbits/GTK/Window.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** Window.c 10 Oct 2003 20:27:04 -0000 1.37
--- Window.c 12 Oct 2003 21:33:46 -0000 1.38
***************
*** 867,868 ****
--- 867,876 ----
}
}
+
+ void osReLayoutContainer(HWND window)
+ {
+ if (GTK_IS_FRAME(widget) || GTK_IS_NOTEBOOK(gtk_widget_get_parent(widget)))
+ osForceContainerReLayout(window);
+
+ handleContainerReLayout(window);
+ }
\ No newline at end of file
|