prevent pop() if first sel == nexttiled(clients)

keyboard
Anselm R. Garbe 18 years ago
parent 7ac0de8350
commit e9cfae7aba
  1. 4
      config.mk
  2. 2
      view.c

@ -17,8 +17,8 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}
CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = -g ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"

@ -261,7 +261,7 @@ zoom(Arg *arg) {
n++;
c = sel;
if(arrange != dofloat) {
if((arrange != dofloat) && c != nexttiled(clients)) {
detach(c);
if(clients)
clients->prev = c;

Loading…
Cancel
Save