dwm-meillo

changeset 199:955b4f217c2d

using -Os again, zoom is ignored in floating mode or on floating clients
author arg@10ksloc.org
date Sat, 05 Aug 2006 14:56:32 +0200
parents ac90e9e4b9c9
children 592b26ac1acc
files client.c config.mk
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/client.c	Sat Aug 05 14:02:25 2006 +0200
     1.2 +++ b/client.c	Sat Aug 05 14:56:32 2006 +0200
     1.3 @@ -466,7 +466,7 @@
     1.4  {
     1.5  	Client *c;
     1.6  
     1.7 -	if(!sel)
     1.8 +	if(!sel || arrange != dotile)
     1.9  		return;
    1.10  
    1.11  	if(sel == getnext(clients) && sel->next)  {
     2.1 --- a/config.mk	Sat Aug 05 14:02:25 2006 +0200
     2.2 +++ b/config.mk	Sat Aug 05 14:56:32 2006 +0200
     2.3 @@ -15,7 +15,7 @@
     2.4  LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
     2.5  
     2.6  # flags
     2.7 -CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\"
     2.8 +CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
     2.9  LDFLAGS = ${LIBS}
    2.10  #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
    2.11  #LDFLAGS = -g ${LIBS}