From 6610e7b79f38eaea12185ff42a93b54dff596047 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(+) (limited to 'tabbed.c') 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