Browse Source

Fixes #814. Allows change on a read only TextField programmatically.

BDisp 5 years ago
parent
commit
b6e234a8e0
1 changed files with 0 additions and 3 deletions
  1. 0 3
      Terminal.Gui/Views/TextField.cs

+ 0 - 3
Terminal.Gui/Views/TextField.cs

@@ -129,9 +129,6 @@ namespace Terminal.Gui {
 			}
 
 			set {
-				if (ReadOnly)
-					return;
-
 				var oldText = ustring.Make (text);
 
 				if (oldText == value)