From 8c407e93cd05c5ca701326cab4a5a2f7b5d5a402 Mon Sep 17 00:00:00 2001 From: "Douglas B. Rumbaugh" Date: Sat, 21 Jan 2023 17:19:51 -0500 Subject: Fixed glitchy behavior with vimb Per iamleot's comment on #138 in the vimb issue tracker, https://github.com/fanglingsu/vimb/issues/138, tabbed must send a resize request on screen update to ensure that vimb redraws the updated screen properly. Adding this line supposedly fixes the issue. It looks like it's working in initial tinkering. I'll leave it in and play around with it further. --- tabbed.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tabbed.c b/tabbed.c index 0c44653..0a9561f 100644 --- a/tabbed.c +++ b/tabbed.c @@ -326,6 +326,7 @@ configurerequest(const XEvent *e) wc.stack_mode = ev->detail; XConfigureWindow(dpy, clients[c]->win, ev->value_mask, &wc); } + resize(sel, ww, wh - bh); } void -- cgit v1.2.3