Better spacing on DPI scaler control in the Widget Reflector.

[CL 2239454 by Nick Atamas in Main branch]
This commit is contained in:
Nick Atamas
2014-08-01 01:55:48 -04:00
committed by UnrealBot
parent 56ee1efa1f
commit 2ba428fce7

View File

@@ -34,15 +34,15 @@ void SWidgetReflector::Construct( const FArguments& InArgs )
]
+ SHorizontalBox::Slot()
.AutoWidth()
[
SNew(SSpinBox<float>)
.Value(this, &SWidgetReflector::HandleAppScaleSliderValue)
.MinValue(0.1f)
.MaxValue(3.0f)
.Delta(0.01f)
.OnValueChanged(this, &SWidgetReflector::HandleAppScaleSliderChanged)
]
.MaxWidth(250)
[
SNew(SSpinBox<float>)
.Value(this, &SWidgetReflector::HandleAppScaleSliderValue)
.MinValue(0.1f)
.MaxValue(3.0f)
.Delta(0.01f)
.OnValueChanged(this, &SWidgetReflector::HandleAppScaleSliderChanged)
]
]
+ SVerticalBox::Slot()