3 Commits
0.6 ... 0.7

Author SHA1 Message Date
Anselm R. Garbe
04eade6a76 small change of main event loop 2006-09-04 07:28:03 +02:00
Anselm R. Garbe
49ce444d32 updated version 2006-08-28 12:26:25 +02:00
Anselm R. Garbe
2e9515ee27 Added tag 0.6 for changeset 25f679fb19686140a907684ffcb423b9e9d44b53 2006-08-28 10:20:10 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -3,3 +3,4 @@ fcc8a282cb52c6a9343b461026b386825590cd31 0.1
d352e9dc112ee96aa5cad961a0ed880ae9ce7276 0.3
7acf0dde1120542917bae12e0e42293f9d2cc899 0.4
4a0ecd881c4fc15de4a0bebd79308b064be020ef 0.5
25f679fb19686140a907684ffcb423b9e9d44b53 0.6

View File

@@ -1,5 +1,5 @@
# dmenu version
VERSION = 0.6
VERSION = 0.7
# Customize below to fit your system

4
main.c
View File

@@ -354,6 +354,8 @@ main(int argc, char *argv[])
/* main event loop */
while(running && !XNextEvent(dpy, &ev)) {
switch (ev.type) {
default: /* ignore all crap */
break;
case KeyPress:
kpress(&ev.xkey);
break;
@@ -361,8 +363,6 @@ main(int argc, char *argv[])
if(ev.xexpose.count == 0)
drawmenu();
break;
default:
break;
}
}