Added debugging code for mouseExited:. In El Capitan it's not working in scrolled views...
This commit is contained in:
parent
0ec70f9111
commit
93a9847b59
|
@ -223,6 +223,10 @@ mouseEvent(otherMouseUp)
|
|||
{
|
||||
uiArea *a = self->libui_a;
|
||||
|
||||
NSLog(@"entered");
|
||||
NSLog(@"a %p", a);
|
||||
NSLog(@"ah %p", a->ah);
|
||||
NSLog(@"crossed %p", a->ah->MouseCrossed);
|
||||
(*(a->ah->MouseCrossed))(a->ah, a, 0);
|
||||
}
|
||||
|
||||
|
@ -230,6 +234,10 @@ mouseEvent(otherMouseUp)
|
|||
{
|
||||
uiArea *a = self->libui_a;
|
||||
|
||||
NSLog(@"exited");
|
||||
NSLog(@"a %p", a);
|
||||
NSLog(@"ah %p", a->ah);
|
||||
NSLog(@"crossed %p", a->ah->MouseCrossed);
|
||||
(*(a->ah->MouseCrossed))(a->ah, a, 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue