diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-05-19 01:11:24 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-05-19 01:11:24 +0800 |
commit | ea50f388412c9c4d880bea7aa770d079b8c9141c (patch) | |
tree | 398773c8718935775025f0207e08189f56665a8d /embed/find-dialog.c | |
parent | c5202864540e0ac530dde2e4eb18a7e22fe699d8 (diff) | |
download | gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.gz gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.bz2 gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.lz gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.xz gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.zst gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.zip |
0.6.1
2003-05-18 Marco Pesenti Gritti <marco@it.gnome.org>
* NEWS:
* configure.in:
0.6.1
* embed/find-dialog.c: (dialog_constrain_height):
Missing cast.
* lib/ephy-start-here.c:
Missing header.
Diffstat (limited to 'embed/find-dialog.c')
-rwxr-xr-x | embed/find-dialog.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/embed/find-dialog.c b/embed/find-dialog.c index 9951d548d..41309c482 100755 --- a/embed/find-dialog.c +++ b/embed/find-dialog.c @@ -258,10 +258,11 @@ dialog_constrain_height (FindDialog *dialog) { GdkGeometry geometry; GtkWindow *window = GTK_WINDOW (dialog->priv->window); - + /* Do not allow to resize the widget vertically */ - geometry.max_height = 0; - geometry.max_width = gdk_screen_get_width (gtk_widget_get_screen (window));; + geometry.max_height = 0; + geometry.max_width = gdk_screen_get_width + (gtk_widget_get_screen (GTK_WIDGET (window))); gtk_window_set_geometry_hints (window, GTK_WIDGET (window), &geometry, GDK_HINT_MAX_SIZE); |