From 6b622cafd5f7d2c768dfa8165d05d079225a5c7e Mon Sep 17 00:00:00 2001 From: Rustam Zaitov Date: Wed, 6 May 2015 20:57:19 +0300 Subject: [PATCH] [Chat] remove old workaround for render glitches Xamarin.iOS 8.10.1.24 --- Chat/Chat/ChatInput/ChatInputView.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Chat/Chat/ChatInput/ChatInputView.cs b/Chat/Chat/ChatInput/ChatInputView.cs index 8c7de561..627bdee9 100644 --- a/Chat/Chat/ChatInput/ChatInputView.cs +++ b/Chat/Chat/ChatInput/ChatInputView.cs @@ -25,9 +25,6 @@ namespace Chat public ChatInputView () { TextView = new UITextView (); - TextView.Changed += OnTextChanged; - TextView.Started += OnTextChanged; - TextView.Ended += OnTextChanged; TextView.Layer.BorderColor = InputBorderColor.CGColor; TextView.Layer.BorderWidth = BorderWidth; TextView.Layer.CornerRadius = CornerRadius; @@ -68,10 +65,5 @@ namespace Chat AddConstraints (c1); AddConstraint (c2); } - - void OnTextChanged (object sender, EventArgs e) - { - SetNeedsDisplay (); - } } } \ No newline at end of file