diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-05-17 14:17:18 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-05-17 14:17:18 +0100 |
commit | a785a0d71213c2ab628778727c4354ad5bb517fb (patch) | |
tree | e8d72e6584245d37de3c04e1e8f3f7d6e387a0f8 /config.def.h | |
parent | 489ac07e83f5dabd23d494630c7bb61690bb56e0 (diff) | |
download | dwm-a785a0d71213c2ab628778727c4354ad5bb517fb.tar.gz |
removed Layout->isfloating
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 437a0f2..2891780 100644 --- a/config.def.h +++ b/config.def.h @@ -24,10 +24,10 @@ Rule rules[] = { #define SNAP 32 /* snap pixel */ Layout layouts[] = { - /* symbol function isfloating */ - { "[]=", tilev, False }, /* first entry is default */ - { "><>", NULL, True }, - { "<M>", monocle, True }, + /* symbol function */ + { "[]=", tilev }, /* first entry is default */ + { "><>", NULL }, /* no layout function means floating behavior */ + { "<M>", monocle }, /* TODO: remove this */ }; /* key definitions */ |