get rid of the resize grip

This commit is contained in:
Daniel Micay 2012-06-01 05:14:44 -04:00
parent 399f6c4290
commit 69b0dc99f1
2 changed files with 3 additions and 0 deletions

View File

@ -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;

View File

@ -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);