From 9117128624ac3c6ff801d5098dc5e18debdcf397 Mon Sep 17 00:00:00 2001 From: Baris Sencan Date: Wed, 9 Dec 2015 18:26:48 -0800 Subject: [PATCH] [MobilePlayerControlsView] 8 pt right margin to duration label in default setup --- MobilePlayer/Views/MobilePlayerControlsView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobilePlayer/Views/MobilePlayerControlsView.swift b/MobilePlayer/Views/MobilePlayerControlsView.swift index ec125ab..855369f 100644 --- a/MobilePlayer/Views/MobilePlayerControlsView.swift +++ b/MobilePlayer/Views/MobilePlayerControlsView.swift @@ -47,7 +47,7 @@ final class MobilePlayerControlsView: UIView { bottomBar.addElementUsingConfig(ToggleButtonConfig(dictionary: ["type": "toggleButton", "identifier": "play"])) bottomBar.addElementUsingConfig(LabelConfig(dictionary: ["type": "label", "identifier": "currentTime"])) bottomBar.addElementUsingConfig(SliderConfig(dictionary: ["type": "slider", "identifier": "playback"])) - bottomBar.addElementUsingConfig(LabelConfig(dictionary: ["type": "label", "identifier": "duration"])) + bottomBar.addElementUsingConfig(LabelConfig(dictionary: ["type": "label", "identifier": "duration", "marginRight": 8])) } addSubview(bottomBar) }