updated for version 7.0c01
diff --git a/src/gui_photon.c b/src/gui_photon.c
index fa7dc92..f702c41 100644
--- a/src/gui_photon.c
+++ b/src/gui_photon.c
@@ -392,7 +392,7 @@
height -= (pg_margin_top + pg_margin_bottom);
#endif
gui_resize_shell( *width, *height );
- gui_set_shellsize( FALSE, FALSE );
+ gui_set_shellsize( FALSE, FALSE, RESIZE_BOTH );
is_ignore_draw = FALSE;
PtEndFlux( gui.vimContainer );
PtContainerRelease( gui.vimContainer );
@@ -825,7 +825,7 @@
void *data,
PtCallbackInfo_t *info )
{
- gui_set_shellsize( FALSE, TRUE );
+ gui_set_shellsize( FALSE, TRUE, RESIZE_BOTH );
return( Pt_CONTINUE );
}
@@ -1660,7 +1660,8 @@
void
gui_mch_set_shellsize(int width, int height,
- int min_width, int min_height, int base_width, int base_height)
+ int min_width, int min_height, int base_width, int base_height,
+ int direction)
{
PhDim_t window_size = { width, height };
PhDim_t min_size = { min_width, min_height };