Full support for view hiding.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25775 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2007-12-22 16:11:24 +00:00
parent 53bd65a477
commit 151e2f87f7
3 changed files with 81 additions and 17 deletions

View file

@ -3302,7 +3302,10 @@ resetCursorRectsForView(NSView *theView)
[sb getObjects: subs];
for (i = 0; i < count; ++i)
(*ctImp)(self, ctSel, subs[i], theEvent);
{
if (![subs[i] isHidden])
(*ctImp)(self, ctSel, subs[i], theEvent);
}
}
}
}
@ -3389,7 +3392,10 @@ resetCursorRectsForView(NSView *theView)
[sb getObjects: subs];
for (i = 0; i < count; ++i)
(*ccImp)(self, ccSel, subs[i], theEvent);
{
if (![subs[i] isHidden])
(*ccImp)(self, ccSel, subs[i], theEvent);
}
}
}
}