Merge pull request #22842 from asmorkalov:as/pr_22737_backport

backport #22737: Cocoa/highgui: Set [NSApp activateIgnoringOtherApps] to spawn window on top
pull/22856/head
Alexander Smorkalov 2 years ago committed by GitHub
commit 51758b2dd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/highgui/src/window_cocoa.mm

@ -579,6 +579,8 @@ CV_IMPL int cvNamedWindow( const char* name, int flags )
[window setContentView:[[CVView alloc] init]];
[NSApp activateIgnoringOtherApps:YES];
[window setHasShadow:YES];
[window setAcceptsMouseMovedEvents:YES];
[window useOptimizedDrawing:YES];

Loading…
Cancel
Save