diff options
| -rw-r--r-- | main.c | 5 |
1 files changed, 2 insertions, 3 deletions
| @@ -28,7 +28,7 @@ struct Item { | |||
| 28 | 28 | ||
| 29 | static char text[4096]; | 29 | static char text[4096]; |
| 30 | static char *prompt = NULL; | 30 | static char *prompt = NULL; |
| 31 | static int mx, my, mw, mh; | 31 | static int mw, mh; |
| 32 | static int ret = 0; | 32 | static int ret = 0; |
| 33 | static int nitem = 0; | 33 | static int nitem = 0; |
| 34 | static unsigned int cmdw = 0; | 34 | static unsigned int cmdw = 0; |
| @@ -431,12 +431,11 @@ main(int argc, char *argv[]) { | |||
| 431 | wa.override_redirect = 1; | 431 | wa.override_redirect = 1; |
| 432 | wa.background_pixmap = ParentRelative; | 432 | wa.background_pixmap = ParentRelative; |
| 433 | wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask; | 433 | wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask; |
| 434 | mx = my = 0; | ||
| 435 | mw = DisplayWidth(dpy, screen); | 434 | mw = DisplayWidth(dpy, screen); |
| 436 | mh = dc.font.height + 2; | 435 | mh = dc.font.height + 2; |
| 437 | if(bottom) | 436 | if(bottom) |
| 438 | my += DisplayHeight(dpy, screen) - mh; | 437 | my += DisplayHeight(dpy, screen) - mh; |
| 439 | win = XCreateWindow(dpy, root, mx, my, mw, mh, 0, | 438 | win = XCreateWindow(dpy, root, 0, 0, mw, mh, 0, |
| 440 | DefaultDepth(dpy, screen), CopyFromParent, | 439 | DefaultDepth(dpy, screen), CopyFromParent, |
| 441 | DefaultVisual(dpy, screen), | 440 | DefaultVisual(dpy, screen), |
| 442 | CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa); | 441 | CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa); |
