summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2023-01-21 17:19:51 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2023-01-25 23:24:26 -0500
commit8c407e93cd05c5ca701326cab4a5a2f7b5d5a402 (patch)
tree6ae306e88e8496dedbde190878766b4c8b98fbe3
parent7430ca9df72d922734a97fb8d5bc8f674c1eb42e (diff)
downloadtabbed-8c407e93cd05c5ca701326cab4a5a2f7b5d5a402.tar.gz
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.
-rw-r--r--tabbed.c1
1 files changed, 1 insertions, 0 deletions
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