using -Os again, zoom is ignored in floating mode or on floating clients
This commit is contained in:
parent
a207949b65
commit
ecc95c903b
2
client.c
2
client.c
|
@ -466,7 +466,7 @@ zoom(Arg *arg)
|
||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
if(!sel)
|
if(!sel || arrange != dotile)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(sel == getnext(clients) && sel->next) {
|
if(sel == getnext(clients) && sel->next) {
|
||||||
|
|
|
@ -15,7 +15,7 @@ INCS = -I/usr/lib -I${X11INC}
|
||||||
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
|
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
|
||||||
|
|
||||||
# flags
|
# flags
|
||||||
CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\"
|
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
|
||||||
LDFLAGS = ${LIBS}
|
LDFLAGS = ${LIBS}
|
||||||
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
|
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
|
||||||
#LDFLAGS = -g ${LIBS}
|
#LDFLAGS = -g ${LIBS}
|
||||||
|
|
Loading…
Reference in New Issue