Skip to content

Commit 996dada

Browse files
authored
Merge pull request #23 from Blackjacx/patch-1
Fix endless recursion setting the attributed text
2 parents 8c2f528 + 1ca4ac7 commit 996dada

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Pod/Classes/NextGrowingTextView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ extension NextGrowingTextView {
315315
public var attributedText: NSAttributedString! {
316316
get { return self.textView.attributedText }
317317
set {
318-
self.attributedText = newValue
318+
self.textView.attributedText = newValue
319319
self.fitToScrollView()
320320
}
321321
}

0 commit comments

Comments
 (0)