aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-16 11:38:31 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-16 11:38:31 +0100
commitf8f5b270361c4a985d1737d20c71d372f12bb614 (patch)
tree618612a563c52fd9eb48164bd0ec9e02f3d3125c
parentd6bf35caad9b8bb1c719a512842fa91e2b43d12d (diff)
downloaddmenu-f8f5b270361c4a985d1737d20c71d372f12bb614.tar.gz
dmenu-f8f5b270361c4a985d1737d20c71d372f12bb614.tar.bz2
dmenu-f8f5b270361c4a985d1737d20c71d372f12bb614.zip
removed useless mx, my
-rw-r--r--main.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/main.c b/main.c
index 59b3a72..b5c29c3 100644
--- a/main.c
+++ b/main.c
@@ -28,7 +28,7 @@ struct Item {
static char text[4096];
static char *prompt = NULL;
-static int mx, my, mw, mh;
+static int mw, mh;
static int ret = 0;
static int nitem = 0;
static unsigned int cmdw = 0;
@@ -431,12 +431,11 @@ main(int argc, char *argv[]) {
wa.override_redirect = 1;
wa.background_pixmap = ParentRelative;
wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask;
- mx = my = 0;
mw = DisplayWidth(dpy, screen);
mh = dc.font.height + 2;
if(bottom)
my += DisplayHeight(dpy, screen) - mh;
- win = XCreateWindow(dpy, root, mx, my, mw, mh, 0,
+ win = XCreateWindow(dpy, root, 0, 0, mw, mh, 0,
DefaultDepth(dpy, screen), CopyFromParent,
DefaultVisual(dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);