Update minus sign character

This commit is contained in:
Vincent Tourraine 2016-03-11 14:10:12 +01:00
parent 39296c9815
commit 993b8297e2
1 changed files with 3 additions and 3 deletions

View File

@ -52,8 +52,8 @@ import UIKit
/// If the value is integer, it is shown without floating point.
@IBInspectable public var showIntegerIfDoubleIsInteger: Bool = true
/// Text on the left button. Be sure that it fits in the button. Defaults to "-".
@IBInspectable public var leftButtonText: String = "-" {
/// Text on the left button. Be sure that it fits in the button. Defaults to "".
@IBInspectable public var leftButtonText: String = "" {
didSet {
leftButton.setTitle(leftButtonText, forState: .Normal)
}
@ -459,4 +459,4 @@ extension GMStepper {
}
}
}