diff options
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/vclnsapp.mm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/osx/vclnsapp.mm b/vcl/osx/vclnsapp.mm index f805df6959d4..26f826467677 100644 --- a/vcl/osx/vclnsapp.mm +++ b/vcl/osx/vclnsapp.mm @@ -75,6 +75,11 @@ SAL_WNODEPRECATED_DECLARATIONS_PUSH SAL_WNODEPRECATED_DECLARATIONS_POP assert( pEvent ); [NSApp postEvent: pEvent atStart: NO]; + + if( [NSWindow respondsToSelector:@selector(allowsAutomaticWindowTabbing)] ) + { + NSWindow.allowsAutomaticWindowTabbing = NO; + } } -(void)sendEvent:(NSEvent*)pEvent |