~kris/suckless

tabbed

d136cb337f970cfe3b47134fec4e7578613cc56b — Enno Boland (tox) 16 years ago e65f483
resizing works again, windows are getting managed.
2 files changed, 3 insertions(+), 3 deletions(-)

M config.mk
M tabbed.c
M config.mk => config.mk +1 -1
@@ 18,7 18,7 @@ LIBS = -L/usr/lib -lc ${GTKLIB} -lgthread-2.0
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
CFLAGS = -std=c99 -pedantic -Wall -Werror -O0 ${INCS} ${CPPFLAGS}
CFLAGS = -g -std=c99 -pedantic -Wall -Werror -O0 ${INCS} ${CPPFLAGS}
#LDFLAGS = -s ${LIBS}
LDFLAGS = ${LIBS}


M tabbed.c => tabbed.c +2 -2
@@ 325,7 325,7 @@ focus(Client *c) {
		return;
	}
	XRaiseWindow(dpy, c->win);
	XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
//	XSetInputFocus(dpy, c->win, RevertToNone, CurrentTime);
	XSelectInput(dpy, c->win, PropertyChangeMask|StructureNotifyMask);
	sel = c;
	XStoreName(dpy, win, sel->name);


@@ 663,7 663,7 @@ setup(void) {
	win = XCreateSimpleWindow(dpy, root, wx, wy, ww, wh, 0, dc.norm[ColFG], dc.norm[ColBG]);
	XSelectInput(dpy, win, PointerMotionMask|SubstructureNotifyMask|
			ButtonPressMask|ExposureMask|KeyPressMask|
			LeaveWindowMask|SubstructureRedirectMask);
			LeaveWindowMask|StructureNotifyMask);
	XMapRaised(dpy, win);
	xerrorxlib = XSetErrorHandler(xerror);
	XClassHint class_hint;