From 0ee5ac498355747e325fea5be2e574e37a399798 Mon Sep 17 00:00:00 2001 From: WanderingPenwing Date: Tue, 6 Aug 2024 01:27:54 +0200 Subject: [PATCH] fixed tab color issue on close and mapped go to ctrl+return --- surf.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/surf.c b/surf.c index e66bf9e..17618c7 100644 --- a/surf.c +++ b/surf.c @@ -600,9 +600,8 @@ void tab_bar_mouse_release(GtkWidget *w, GdkEvent *e, Client *c) { } c->tab_click_index = -1; - if (c->tab_drag) { - update_tab_bar(c); - } + + update_tab_bar(c); } void tab_bar_mouse_move(GtkWidget *w, GdkEvent *e, Client *c) {