summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/screen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c
index 702f10a..b3b9840 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -465,6 +465,8 @@ screen_update (rp_screen *s, int width, int height)
oldwidth = s->width; oldheight = s->height;
s->width = width; s->height = height;
+ XResizeWindow (dpy, s->help_window, width, height);
+
list_for_each_entry (f, &s->frames, node)
{
f->x = (f->x*width)/oldwidth;