fixed a crash when retagging a client '1+2' that was tagged with '1&2' before. Thanks Alexis Hildebrandt!

This commit is contained in:
Denis Grelich 2007-01-15 11:47:15 +01:00
parent 49ac17f22a
commit e94ac726b8
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ create_frame(Client *c, View *v) {
f->id = id++;
f->client = c;
f->view = v;
if(c->frame) {
if(c->sel) {
f->revert = c->sel->revert;
f->rect = c->sel->rect;
}