Browse Source

applied Ryan Zheng's patch and re-releasing 5.7.2

master
Anselm R Garbe 15 years ago
parent
commit
210378f198
2 changed files with 3 additions and 4 deletions
  1. +1
    -1
      config.mk
  2. +2
    -3
      dwm.c

+ 1
- 1
config.mk View File

@ -1,5 +1,5 @@
# dwm version
VERSION = 5.7.1
VERSION = 5.7.2
# Customize below to fit your system


+ 2
- 3
dwm.c View File

@ -1449,10 +1449,9 @@ void
setlayout(const Arg *arg) {
if(!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
selmon->sellt ^= 1;
if(arg && arg->v) {
if(arg && arg->v)
selmon->lt[selmon->sellt] = (Layout *)arg->v;
strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof selmon->ltsymbol);
}
strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof selmon->ltsymbol);
if(selmon->sel)
arrange(selmon);
else


Loading…
Cancel
Save