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-21 17:19:51 -0500
commit6610e7b79f38eaea12185ff42a93b54dff596047 (patch)
tree16e9bf48f02bf51f1905970daad4d1f8894477f8
parentab116dd5ba0269105053f86ac8c61bd59d49f59f (diff)
downloadtabbed-6610e7b79f38eaea12185ff42a93b54dff596047.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