[qwaq] Implement Group redraw

This commit is contained in:
Bill Currie 2020-03-19 18:39:11 +09:00
parent 8bd702ab1a
commit 28a9e041e6
1 changed files with 8 additions and 0 deletions

View File

@ -64,6 +64,14 @@ not_dont_draw (id aView, void *aGroup)
-redraw
{
if (owner) {
[owner redraw];
} else {
[self draw];
if (__obj_responds_to (context, @selector(refresh))) {
[(id)context refresh];
}
}
return self;
}