diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2023-01-21 17:19:51 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2023-01-25 23:24:26 -0500 |
| commit | 8c407e93cd05c5ca701326cab4a5a2f7b5d5a402 (patch) | |
| tree | 6ae306e88e8496dedbde190878766b4c8b98fbe3 | |
| parent | 7430ca9df72d922734a97fb8d5bc8f674c1eb42e (diff) | |
| download | tabbed-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |