Xinqi Bao's Git
projects
/
dmenu.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
d6bf35c
)
removed useless mx, my
author
Anselm R. Garbe <
[email protected]
>
Tue, 16 Jan 2007 10:38:31 +0000
(11:38 +0100)
committer
Anselm R. Garbe <
[email protected]
>
Tue, 16 Jan 2007 10:38:31 +0000
(11:38 +0100)
main.c
diff
|
blob
|
history
diff --git
a/main.c
b/main.c
index
59b3a72
..
b5c29c3
100644
(file)
--- a/
main.c
+++ b/
main.c
@@
-28,7
+28,7
@@
struct Item {
static char text[4096];
static char *prompt = NULL;
static char text[4096];
static char *prompt = NULL;
-static int m
x, my, m
w, mh;
+static int mw, mh;
static int ret = 0;
static int nitem = 0;
static unsigned int cmdw = 0;
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;
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;
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);
DefaultDepth(dpy, screen), CopyFromParent,
DefaultVisual(dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);