get rid of the resize grip
This commit is contained in:
parent
399f6c4290
commit
69b0dc99f1
2
config.h
2
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;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue