From 69b0dc99f1fdeba3fe4a1d29257f9b07b7a72706 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 1 Jun 2012 05:14:44 -0400 Subject: [PATCH] get rid of the resize grip --- config.h | 2 ++ termite.c | 1 + 2 files changed, 3 insertions(+) diff --git a/config.h b/config.h index c826b7a..ab00f5c 100644 --- a/config.h +++ b/config.h @@ -38,6 +38,8 @@ static const char *colors[16] = { "#ffffff", // bright white }; +static const bool resize_grip = false; + static const bool scroll_on_output = false; static const bool scroll_on_keystroke = true; diff --git a/termite.c b/termite.c index d9f7193..6267699 100644 --- a/termite.c +++ b/termite.c @@ -259,6 +259,7 @@ int main(int argc, char **argv) { vte_terminal_set_audible_bell(VTE_TERMINAL(vte), audible_bell); vte_terminal_set_visible_bell(VTE_TERMINAL(vte), visible_bell); vte_terminal_set_mouse_autohide(VTE_TERMINAL(vte), mouse_autohide); + gtk_window_set_has_resize_grip(GTK_WINDOW(window), resize_grip); #ifdef TRANSPARENCY GdkScreen *screen = gtk_widget_get_screen(window);