[vlc-commits] [Git][videolan/vlc][master] 2 commits: macosx: fix stale label outlets in info window xib
Felix Paul Kühne (@fkuehne)
gitlab at videolan.org
Tue Apr 21 08:29:33 UTC 2026
Felix Paul Kühne pushed to branch master at VideoLAN / VLC
Commits:
d10b06a8 by Felix Paul Kühne at 2026-04-21T10:07:52+02:00
macosx: fix stale label outlets in info window xib
- - - - -
3b529518 by Felix Paul Kühne at 2026-04-21T10:07:52+02:00
macosx: opt in to secure restorable state
- - - - -
2 changed files:
- modules/gui/macosx/UI/VLCInformationWindow.xib
- modules/gui/macosx/main/VLCMain.m
Changes:
=====================================
modules/gui/macosx/UI/VLCInformationWindow.xib
=====================================
@@ -34,13 +34,13 @@
<outlet property="demuxReadBytesTextField" destination="542" id="9eB-eE-XTP"/>
<outlet property="demuxReadPacketsLabel" destination="Hnb-RD-RvP" id="6Xi-zs-S8Q"/>
<outlet property="demuxReadPacketsTextField" destination="7Q8-ZO-4ZM" id="gWq-ZN-quj"/>
- <outlet property="descriptionLabel" destination="498" id="679"/>
+ <outlet property="contentDescriptionLabel" destination="498" id="679"/>
<outlet property="directorLabel" destination="cXh-Kb-cBh" id="6ZF-wX-Xh2"/>
<outlet property="directorTextField" destination="KiB-XA-gnh" id="ERL-sw-M61"/>
<outlet property="displayedLabel" destination="557" id="712"/>
<outlet property="displayedTextField" destination="558" id="713"/>
<outlet property="encodedByTextField" destination="504" id="BOa-Pb-f9Z"/>
- <outlet property="encodedbyLabel" destination="505" id="660"/>
+ <outlet property="encodedByLabel" destination="505" id="660"/>
<outlet property="episodeLabel" destination="32r-kK-YIK" id="yix-cN-AcT"/>
<outlet property="episodeTextField" destination="D3W-el-Mmk" id="FS0-bE-baK"/>
<outlet property="genreLabel" destination="462" id="662"/>
@@ -79,7 +79,7 @@
<outlet property="trackNumberTextField" destination="441" id="v8g-zz-lrZ"/>
<outlet property="trackTotalLabel" destination="cIj-bq-nFH" id="DTy-a5-z5z"/>
<outlet property="trackTotalTextField" destination="Ken-fu-rsj" id="5tM-3S-iBE"/>
- <outlet property="uriLabel" destination="510" id="677"/>
+ <outlet property="decodedMRLLabel" destination="510" id="677"/>
<outlet property="videoDecodedLabel" destination="555" id="727"/>
<outlet property="videoDecodedTextField" destination="556" id="728"/>
<outlet property="videoLabel" destination="553" id="711"/>
=====================================
modules/gui/macosx/main/VLCMain.m
=====================================
@@ -504,6 +504,11 @@ static VLCMain *sharedInstance = nil;
return YES;
}
+- (BOOL)applicationSupportsSecureRestorableState:(NSApplication *)app
+{
+ return YES;
+}
+
#pragma mark -
#pragma mark Other objects getters
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/edda07e46bf1068f4883f00455ca37cfdee36792...3b5295189fac8b46d03d2535946ececbf1e1e6d3
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/edda07e46bf1068f4883f00455ca37cfdee36792...3b5295189fac8b46d03d2535946ececbf1e1e6d3
You're receiving this email because of your account on code.videolan.org.
More information about the vlc-commits
mailing list