Do not center window on screen, workaround for issue #9

master
Bert Münnich 2014-04-21 20:40:01 +02:00
parent e685859a30
commit 0b83386bff
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
VERSION = git-20140406
VERSION = git-20140421
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man

View File

@ -224,7 +224,7 @@ void win_open(win_t *win)
}
sizehints.flags |= USPosition;
} else {
win->x = (e->scrw - win->w) / 2;
win->x = 0;
}
if ((gmask & YValue) != 0) {
if ((gmask & YNegative) != 0) {
@ -234,7 +234,7 @@ void win_open(win_t *win)
}
sizehints.flags |= USPosition;
} else {
win->y = (e->scrh - win->h) / 2;
win->y = 0;
}
attr.background_pixel = win->bgcol;