Skip to content

Commit bcb9a1f

Browse files
committed
gui: resize grips are deprecated
Apparently GNOME doesn't care about them anymore, so GTK isn't allowed to have them either.
1 parent a0af444 commit bcb9a1f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/gui.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,9 @@ window_init ()
423423
gtk_window_set_title (GTK_WINDOW (uzbl.gui.main_window), "Uzbl");
424424
gtk_widget_set_name (uzbl.gui.main_window, "Uzbl");
425425

426-
#if GTK_CHECK_VERSION (3, 0, 0)
427-
/* TODO: Make into an option? */
426+
#if GTK_CHECK_VERSION (3, 0, 0) && !GTK_CHECK_VERSION (3, 13, 5)
427+
/* TODO: Make into an option? Nope...it doesn't exist in 3.14 anymore
428+
* because there are no resize grips whatsoever. */
428429
gtk_window_set_has_resize_grip (GTK_WINDOW (uzbl.gui.main_window), FALSE);
429430
#endif
430431

0 commit comments

Comments
 (0)