Restore no-arg ExponentialSliderWidget ctor.

This is required for dynamic widget creation.
This commit is contained in:
Paul Chote
2019-05-09 20:22:39 +01:00
committed by reaperrr
parent ba282865f1
commit 7c71e55b01

View File

@@ -19,6 +19,9 @@ namespace OpenRA.Mods.Common.Widgets
public double ExpA = 1.0e-3;
public double ExpB = 6.908;
public ExponentialSliderWidget()
: base() { }
public ExponentialSliderWidget(ExponentialSliderWidget other)
: base(other) { }