Merge pull request #818 from BDisp/textfield-read-only

Fixes #814. Allows change on a read only TextField programmatically.
This commit is contained in:
Charlie Kindel
2020-07-22 10:28:49 -06:00
committed by GitHub

View File

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