diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-08-29 17:31:55 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-08-29 17:31:55 +0200 |
commit | aa1bda81646e9d6188fd584009be0eee619f6966 (patch) | |
tree | 28ad2d6e4d602b738a154d6befc62bfef9107819 /tag.c | |
parent | 157ea539a2d1926ee3a9d2fe713eba0b9428f685 (diff) |
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)
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -31,7 +31,7 @@ static RReg *rreg = NULL; static unsigned int len = 0; static void -applytag() +commit() { /* asserts sel != NULL */ settitle(sel); @@ -132,7 +132,7 @@ tag(Arg *arg) for(i = 0; i < ntags; i++) sel->tags[i] = False; sel->tags[arg->i] = True; - applytag(); + commit(); } void @@ -147,5 +147,5 @@ toggletag(Arg *arg) for(i = 0; i < ntags && !sel->tags[i]; i++); if(i == ntags) sel->tags[arg->i] = True; - applytag(); + commit(); } |