| tusing -Os again, zoom is ignored in floating mode or on floating clients - dwm… | |
| git clone git://src.adamsgaard.dk/dwm | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit ecc95c903ba6c9a548588a79c1093e6372555f2c | |
| parent a207949b6503546379e3ab727cecc2f3e0cff78d | |
| Author: [email protected] <unknown> | |
| Date: Sat, 5 Aug 2006 14:56:32 +0200 | |
| using -Os again, zoom is ignored in floating mode or on floating clients | |
| Diffstat: | |
| M client.c | 2 +- | |
| M config.mk | 2 +- | |
| 2 files changed, 2 insertions(+), 2 deletions(-) | |
| --- | |
| diff --git a/client.c b/client.c | |
| t@@ -466,7 +466,7 @@ zoom(Arg *arg) | |
| { | |
| Client *c; | |
| - if(!sel) | |
| + if(!sel || arrange != dotile) | |
| return; | |
| if(sel == getnext(clients) && sel->next) { | |
| diff --git a/config.mk b/config.mk | |
| t@@ -15,7 +15,7 @@ INCS = -I/usr/lib -I${X11INC} | |
| LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 | |
| # flags | |
| -CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\" | |
| +CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" | |
| LDFLAGS = ${LIBS} | |
| #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" | |
| #LDFLAGS = -g ${LIBS} |