aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-05-27 03:51:19 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2011-05-27 03:52:02 -0600
commitdbae85a36051ac0127c01e01ddec3078ee4ffbd4 (patch)
tree536be39d37fdb17ab246e87d5eae4434c2898071 /src
parenta4d8fd4752ad3cda7ed594a6fc0fe5fae6c4d906 (diff)
drop the set_geometry_hints stuff, it never worked anyhow
Diffstat (limited to 'src')
-rw-r--r--src/uzbl-core.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/uzbl-core.c b/src/uzbl-core.c
index 9837a27..6dd7a30 100644
--- a/src/uzbl-core.c
+++ b/src/uzbl-core.c
@@ -1544,12 +1544,6 @@ create_window() {
gtk_window_set_has_resize_grip (GTK_WINDOW (window), FALSE);
#endif
- /* the window should never make itself bigger. */
- GdkGeometry hints = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
- hints.min_height = 1;
- hints.min_width = 1;
- gtk_window_set_geometry_hints (GTK_WINDOW (window), NULL, &hints, GDK_HINT_MIN_SIZE);
-
g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy_cb), NULL);
g_signal_connect (G_OBJECT (window), "configure-event", G_CALLBACK (configure_event_cb), NULL);