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)

This commit is contained in:
Anselm R. Garbe
2006-08-29 17:31:55 +02:00
parent 157ea539a2
commit aa1bda8164
2 changed files with 14 additions and 4 deletions

6
tag.c
View File

@ -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();
}