Error in code invoked by menu:
View3d header -> Select -> Groups -> Parent
There was a call to draw an object in frontbuffer, whilst the header
was still active.
Not needed, because full redraw event was sent too.
This commit is contained in:
2004-04-28 17:35:35 +00:00
parent 07b6ca41c8
commit 0da09b4299

View File

@@ -500,9 +500,9 @@ void select_parent(void) /* Makes parent active and de-selected OBACT */
oldbasact = BASACT;
BASACT = basact;
basact->flag |= SELECT;
if(oldbasact) if(oldbasact != basact) draw_object_ext(oldbasact);
basact->object->flag= basact->flag;
draw_object_ext(basact);
set_active_base(basact);
}