tdon't resize master if not in tiled mode - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 4cff744438a8ee1dc3928503a297c73cc9ad96d0
(DIR) parent c3527bea5746ac23599408a32f500381475815c4
(HTM) Author: Anselm R. Garbe <arg@suckless.org>
Date: Mon, 19 Feb 2007 10:51:11 +0100
don't resize master if not in tiled mode
Diffstat:
M view.c | 2 ++
1 file changed, 2 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/view.c b/view.c
t@@ -177,6 +177,8 @@ isvisible(Client *c) {
void
resizemaster(Arg *arg) {
+ if(arrange != dotile)
+ return;
if(arg->i == 0)
master = MASTER;
else {