Skip to content

Commit faebe27

Browse files
committed
Fix Default Placeholder Padding
1 parent 0d2ea1b commit faebe27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MessageInputBar.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Pod::Spec.new do |s|
88
s.requires_arc = true
99

1010
# 2 - Version
11-
s.version = '0.4.0'
11+
s.version = '0.4.1'
1212
s.pod_target_xcconfig = {
1313
"SWIFT_VERSION" => "4.2",
1414
}

Sources/Views/InputTextView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ open class InputTextView: UITextView {
8686
}
8787

8888
/// The `UIEdgeInsets` the placeholderLabel has within the `InputTextView`
89-
open var placeholderLabelInsets: UIEdgeInsets = UIEdgeInsets(top: 4, left: 4, bottom: 4, right: 4) {
89+
open var placeholderLabelInsets: UIEdgeInsets = UIEdgeInsets(top: 8, left: 4, bottom: 8, right: 4) {
9090
didSet {
9191
updateConstraintsForPlaceholderLabel()
9292
}

0 commit comments

Comments
 (0)