[vlc-commits] [Git][videolan/vlc][master] macosx: Disable tabbing in library window

Steve Lhomme (@robUx4) gitlab at videolan.org
Thu Feb 2 06:22:10 UTC 2023



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
23dff509 by Claudio Cambra at 2023-02-02T06:02:24+00:00
macosx: Disable tabbing in library window

Signed-off-by: Claudio Cambra <developer at claudiocambra.com>

- - - - -


1 changed file:

- modules/gui/macosx/library/VLCLibraryWindow.m


Changes:

=====================================
modules/gui/macosx/library/VLCLibraryWindow.m
=====================================
@@ -129,7 +129,11 @@ static void addShadow(NSImageView *__unsafe_unretained imageView)
 - (void)awakeFromNib
 {
     self.identifier = VLCLibraryWindowIdentifier;
-    
+
+    if(@available(macOS 10.12, *)) {
+        self.tabbingMode = NSWindowTabbingModeDisallowed;
+    }
+
     VLCMain *mainInstance = [VLCMain sharedInstance];
     _playlistController = [mainInstance playlistController];
 



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/23dff5090d51e0e9c1ce189e8f683a19df024891

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/23dff5090d51e0e9c1ce189e8f683a19df024891
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list