aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-17 11:10:26 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-17 11:10:26 +0100
commit6175a39e8e743dce985c5ba80801d88df9ee2dce (patch)
tree41104e2091757b6957676cc1b991422840d200c7 /main.c
parent2c7ff85f242781083a44067c2156a96efef849c7 (diff)
downloaddmenu-6175a39e8e743dce985c5ba80801d88df9ee2dce.tar.gz
dmenu-6175a39e8e743dce985c5ba80801d88df9ee2dce.tar.bz2
dmenu-6175a39e8e743dce985c5ba80801d88df9ee2dce.zip
hotfix changes2.1
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/main.c b/main.c
index 4dff207..f1f71fd 100644
--- a/main.c
+++ b/main.c
@@ -350,7 +350,7 @@ main(int argc, char *argv[]) {
char *selbg = SELBGCOLOR;
char *selfg = SELFGCOLOR;
fd_set rd;
- int i, j, my;
+ int i, j;
struct timeval timeout;
Item *itm;
XEvent ev;
@@ -431,12 +431,10 @@ main(int argc, char *argv[]) {
wa.override_redirect = 1;
wa.background_pixmap = ParentRelative;
wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask;
- my = 0;
mw = DisplayWidth(dpy, screen);
mh = dc.font.height + 2;
- if(bottom)
- my += DisplayHeight(dpy, screen) - mh;
- win = XCreateWindow(dpy, root, 0, 0, mw, mh, 0,
+ win = XCreateWindow(dpy, root, 0,
+ bottom ? DisplayHeight(dpy, screen) - mh : 0, mw, mh, 0,
DefaultDepth(dpy, screen), CopyFromParent,
DefaultVisual(dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);