diff options
author | Bradley Sepos <[email protected]> | 2017-12-06 16:07:52 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2017-12-06 16:07:52 -0500 |
commit | 4dd183cb540f4ccfd41dd79b103547b000b29345 (patch) | |
tree | 65adc5aa3309c9480cdadeb9800586ecef3023dc /macosx | |
parent | 33fcaae4d2ab1d0335ff0c7ab8efaae4fd6ab7a9 (diff) |
mac: Adjust main window progress area vertical spacing.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/English.lproj/MainWindow.xib | 8 | ||||
-rw-r--r-- | macosx/HBController.m | 5 |
2 files changed, 7 insertions, 6 deletions
diff --git a/macosx/English.lproj/MainWindow.xib b/macosx/English.lproj/MainWindow.xib index d42939fef..08b944f39 100644 --- a/macosx/English.lproj/MainWindow.xib +++ b/macosx/English.lproj/MainWindow.xib @@ -534,10 +534,10 @@ Blu-ray and DVD sources often have multiple titles, the longest of which is typi <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <subviews> <progressIndicator wantsLayer="YES" verticalHuggingPriority="750" maxValue="1" bezeled="NO" style="bar" translatesAutoresizingMaskIntoConstraints="NO" id="1373"> - <rect key="frame" x="24" y="7" width="884" height="33"/> + <rect key="frame" x="24" y="15" width="884" height="17"/> </progressIndicator> <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="1123"> - <rect key="frame" x="22" y="43" width="888" height="28"/> + <rect key="frame" x="22" y="35" width="888" height="28"/> <constraints> <constraint firstAttribute="height" constant="28" id="xDK-Ed-GEv"/> </constraints> @@ -550,10 +550,10 @@ Blu-ray and DVD sources often have multiple titles, the longest of which is typi </subviews> <constraints> <constraint firstItem="1373" firstAttribute="top" secondItem="1123" secondAttribute="bottom" constant="4" id="05I-yD-zGd"/> - <constraint firstItem="1123" firstAttribute="top" secondItem="idQ-Ti-X2a" secondAttribute="top" constant="8" id="SEd-Ur-o24"/> + <constraint firstItem="1123" firstAttribute="top" secondItem="idQ-Ti-X2a" secondAttribute="top" constant="16" id="SEd-Ur-o24"/> <constraint firstAttribute="trailing" secondItem="1123" secondAttribute="trailing" constant="24" id="VYX-jz-5IE"/> <constraint firstItem="1123" firstAttribute="leading" secondItem="idQ-Ti-X2a" secondAttribute="leading" constant="24" id="W5K-34-8HI"/> - <constraint firstAttribute="bottom" secondItem="1373" secondAttribute="bottom" constant="8" id="mrc-nZ-d8a"/> + <constraint firstAttribute="bottom" secondItem="1373" secondAttribute="bottom" constant="16" id="mrc-nZ-d8a"/> <constraint firstAttribute="trailing" secondItem="1373" secondAttribute="trailing" constant="24" id="pFB-8q-Iuf"/> <constraint firstItem="1373" firstAttribute="leading" secondItem="idQ-Ti-X2a" secondAttribute="leading" constant="24" id="uHd-le-njc"/> </constraints> diff --git a/macosx/HBController.m b/macosx/HBController.m index a048778ac..2549587f4 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -137,7 +137,8 @@ @end -#define WINDOW_HEIGHT_OFFSET 48 +#define WINDOW_HEIGHT_OFFSET_INIT 48 +#define WINDOW_HEIGHT_OFFSET 30 @implementation HBController @@ -312,7 +313,7 @@ presetsManager:presetManager]; [self.presetsMenuBuilder build]; - self.bottomConstrain.constant = -WINDOW_HEIGHT_OFFSET; + self.bottomConstrain.constant = -WINDOW_HEIGHT_OFFSET_INIT; [self.window recalculateKeyViewLoop]; } |