From a5b8ee4392e99bef89c29fdaf9f09c3ad462e69f Mon Sep 17 00:00:00 2001 From: Johannes Lund Date: Mon, 21 Jul 2014 04:27:30 +0200 Subject: [PATCH] Fixes #11 --- Chromatism/Chromatism/JLTextView.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Chromatism/Chromatism/JLTextView.m b/Chromatism/Chromatism/JLTextView.m index e189f65..fc7025f 100644 --- a/Chromatism/Chromatism/JLTextView.m +++ b/Chromatism/Chromatism/JLTextView.m @@ -79,6 +79,7 @@ - (void)setup self.font = [UIFont fontWithName:@"Menlo" size:12]; self.autocorrectionType = UITextAutocorrectionTypeNo; self.autocapitalizationType = UITextAutocapitalizationTypeNone; + self.layoutManager.allowsNonContiguousLayout = YES; }