[vlc-commits] [Git][videolan/vlc][master] macosx: Remove unused large font setting
Steve Lhomme (@robUx4)
gitlab at videolan.org
Tue Jul 15 09:18:38 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
1a207ac7 by Claudio Cambra at 2025-07-15T08:50:46+00:00
macosx: Remove unused large font setting
Signed-off-by: Claudio Cambra <developer at claudiocambra.com>
- - - - -
3 changed files:
- modules/gui/macosx/UI/SimplePreferences.xib
- modules/gui/macosx/preferences/VLCSimplePrefsController.h
- modules/gui/macosx/preferences/VLCSimplePrefsController.m
Changes:
=====================================
modules/gui/macosx/UI/SimplePreferences.xib
=====================================
@@ -68,7 +68,6 @@
<outlet property="intf_generalSettingsBox" destination="kup-aY-Wqq" id="RsL-yE-DVe"/>
<outlet property="intf_languageLabel" destination="3892" id="klM-r2-XKf"/>
<outlet property="intf_languagePopup" destination="3900" id="USp-A1-Aut"/>
- <outlet property="intf_largeFontInListsCheckbox" destination="MeC-2c-kJf" id="2mk-ld-N5A"/>
<outlet property="intf_last_updateLabel" destination="3560" id="9TG-0W-rqH"/>
<outlet property="intf_luahttpBox" destination="drh-ot-Vyn" id="YKi-8n-s8a"/>
<outlet property="intf_luahttppwdLabel" destination="3875" id="zl0-da-lHe"/>
@@ -327,16 +326,6 @@ Gw
<action selector="interfaceSettingChanged:" target="-2" id="Ys3-K6-647"/>
</connections>
</button>
- <button mirrorLayoutDirectionWhenInternationalizing="always" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="MeC-2c-kJf">
- <rect key="frame" x="15" y="16" width="190" height="18"/>
- <buttonCell key="cell" type="check" title="Use large text for list views" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="QEl-8k-Hyj">
- <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
- <font key="font" metaFont="system"/>
- </buttonCell>
- <connections>
- <action selector="interfaceSettingChanged:" target="-2" id="NdO-a5-vue"/>
- </connections>
- </button>
<button mirrorLayoutDirectionWhenInternationalizing="always" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="QZ2-zA-u6A">
<rect key="frame" x="15" y="16" width="286" height="18"/>
<buttonCell key="cell" type="check" title="Display album track numbers in play queue" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="I5V-9N-WTo">
@@ -351,15 +340,13 @@ Gw
<constraints>
<constraint firstItem="r3P-eU-tEX" firstAttribute="top" secondItem="3892" secondAttribute="bottom" constant="17" id="0lq-Ud-BSO"/>
<constraint firstItem="QZ2-zA-u6A" firstAttribute="leading" secondItem="wFl-aV-3Hn" secondAttribute="leading" constant="17" id="3tY-4q-xya"/>
+ <constraint firstItem="QZ2-zA-u6A" firstAttribute="top" secondItem="r3P-eU-tEX" secondAttribute="bottom" constant="17" id="5yS-8U-8HV"/>
<constraint firstItem="3892" firstAttribute="centerY" secondItem="3900" secondAttribute="centerY" id="I4b-x2-YzY"/>
- <constraint firstItem="MeC-2c-kJf" firstAttribute="leading" secondItem="r3P-eU-tEX" secondAttribute="leading" id="Oki-bv-W2C"/>
<constraint firstItem="3892" firstAttribute="top" secondItem="wFl-aV-3Hn" secondAttribute="top" constant="12" id="QjC-Pr-bJB"/>
<constraint firstItem="3892" firstAttribute="leading" secondItem="wFl-aV-3Hn" secondAttribute="leading" constant="17" id="SZk-gE-9Fb"/>
<constraint firstAttribute="bottom" secondItem="QZ2-zA-u6A" secondAttribute="bottom" constant="17" id="TXr-OU-qeV"/>
<constraint firstItem="r3P-eU-tEX" firstAttribute="leading" secondItem="wFl-aV-3Hn" secondAttribute="leading" constant="17" id="g2X-29-Ah0"/>
<constraint firstItem="3900" firstAttribute="leading" secondItem="3892" secondAttribute="trailing" constant="17" id="h9A-kZ-JjD"/>
- <constraint firstItem="QZ2-zA-u6A" firstAttribute="top" secondItem="MeC-2c-kJf" secondAttribute="bottom" constant="17" id="qJf-W5-E9J"/>
- <constraint firstItem="MeC-2c-kJf" firstAttribute="top" secondItem="r3P-eU-tEX" secondAttribute="bottom" constant="17" id="tWH-LK-QkS"/>
<constraint firstAttribute="trailing" secondItem="3900" secondAttribute="trailing" constant="20" id="tlF-b1-Tuz"/>
</constraints>
</view>
=====================================
modules/gui/macosx/preferences/VLCSimplePrefsController.h
=====================================
@@ -112,7 +112,6 @@
@property (readwrite, weak) IBOutlet NSPopUpButton *intf_languagePopup;
@property (readwrite, weak) IBOutlet NSTextField *intf_languageLabel;
@property (readwrite, weak) IBOutlet NSButton *intf_statusIconCheckbox;
- at property (readwrite, weak) IBOutlet NSButton *intf_largeFontInListsCheckbox;
@property (readwrite, weak) IBOutlet NSButton *intf_displayTrackNumberPlayQueueCheckBox;
// intf pane - control box
=====================================
modules/gui/macosx/preferences/VLCSimplePrefsController.m
=====================================
@@ -404,7 +404,6 @@ create_toolbar_item(NSString *itemIdent, NSString *name, NSString *desc, NSStrin
[_intf_continueplaybackLabel setStringValue:_NS("Continue playback")];
[_intf_displayEndOfPlaybackViewCheckBox setTitle:_NS("Display end of playback view")];
[_intf_statusIconCheckbox setTitle: _NS("Display VLC status menu icon")];
- [_intf_largeFontInListsCheckbox setTitle: _NS("Use large text for list views")];
[_intf_displayTrackNumberPlayQueueCheckBox setTitle: _NS("Display album track numbers in play queue")];
[_intf_playbackBehaviourBox setTitle:_NS("Playback behaviour")];
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/1a207ac722c0486cb188e60777195e670f9b7cba
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/1a207ac722c0486cb188e60777195e670f9b7cba
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