Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <teromario@yahoo.com>2018-04-11 16:08:03 +0300
committerGitHub <noreply@github.com>2018-04-11 16:08:03 +0300
commit1d0ac983b7e2be622683906f281bebdad94b2eaa (patch)
tree415cd371d9383fb529afe1ce691294bb756bbe95
parentc330f3a7be7b3d5432a774c85984eeb7cc32c98a (diff)
[Mac] Don't copy unnecessary fieldsTherzok-patch-1
-rw-r--r--Xwt.XamMac/Xwt.Mac/TextEntryBackend.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Xwt.XamMac/Xwt.Mac/TextEntryBackend.cs b/Xwt.XamMac/Xwt.Mac/TextEntryBackend.cs
index fe11c70f..d36c31a1 100644
--- a/Xwt.XamMac/Xwt.Mac/TextEntryBackend.cs
+++ b/Xwt.XamMac/Xwt.Mac/TextEntryBackend.cs
@@ -372,8 +372,6 @@ namespace Xwt.Mac
{
// Don't remove this override because the comment on this explains why we need this!
var newCell = (CustomCell)base.Copy(zone);
- newCell.editor = editor;
- newCell.selChangeObserver = selChangeObserver;
newCell.Context = Context;
newCell.EventSink = EventSink;
return newCell;