Browse Source

Don't apply our weird window positioning hacks for clicks on traffic lights (#17181)

This hack fixes the minimize problem with macOS 15.0
customers/outsystems-11.1.X
Nikita Tsukanov 1 year ago
committed by Steven Kirk
parent
commit
f4928f271e
  1. 20
      native/Avalonia.Native/src/OSX/AvnWindow.mm

20
native/Avalonia.Native/src/OSX/AvnWindow.mm

@ -436,6 +436,16 @@
return pt;
}
- (NSView*) findRootView:(NSView*)view
{
while (true) {
auto parent = [view superview];
if(parent == nil)
return view;
view = parent;
}
}
- (void)sendEvent:(NSEvent *_Nonnull)event
{
[super sendEvent:event];
@ -450,7 +460,15 @@
AvnView* view = _parent->View;
NSPoint windowPoint = [event locationInWindow];
NSPoint viewPoint = [view convertPoint:windowPoint fromView:nil];
auto targetView = [[self findRootView:view] hitTest: windowPoint];
if(targetView)
{
auto targetViewClass = [targetView className];
if([targetViewClass containsString: @"_NSThemeWidget"])
return;
}
if (!NSPointInRect(viewPoint, view.bounds))
{
auto avnPoint = ToAvnPoint(windowPoint);

Loading…
Cancel
Save