Mercurial > dwm-meillo
diff tag.c @ 384:126e78129f1d
configurenotify remembers max geom now, and restores this if necessary, however it accepts to touch the max size on configurerequest, this shouldn't break fillscreen apps (tested with mplayer)
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Tue, 29 Aug 2006 17:31:55 +0200 |
parents | 2ec9cead84a7 |
children | 6786cd59468f |
line wrap: on
line diff
--- a/tag.c Tue Aug 29 17:11:37 2006 +0200 +++ b/tag.c Tue Aug 29 17:31:55 2006 +0200 @@ -31,7 +31,7 @@ static unsigned int len = 0; static void -applytag() +commit() { /* asserts sel != NULL */ settitle(sel); @@ -132,7 +132,7 @@ for(i = 0; i < ntags; i++) sel->tags[i] = False; sel->tags[arg->i] = True; - applytag(); + commit(); } void @@ -147,5 +147,5 @@ for(i = 0; i < ntags && !sel->tags[i]; i++); if(i == ntags) sel->tags[arg->i] = True; - applytag(); + commit(); }