summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Editor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/Editor.cs')
-rw-r--r--Xamarin.Forms.Core/Editor.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Xamarin.Forms.Core/Editor.cs b/Xamarin.Forms.Core/Editor.cs
index 16a97f61..a689c05e 100644
--- a/Xamarin.Forms.Core/Editor.cs
+++ b/Xamarin.Forms.Core/Editor.cs
@@ -1,4 +1,5 @@
using System;
+using System.ComponentModel;
using Xamarin.Forms.Internals;
using Xamarin.Forms.Platform;
@@ -88,7 +89,8 @@ namespace Xamarin.Forms
return _platformConfigurationRegistry.Value.On<T>();
}
- void IEditorController.SendCompleted()
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public void SendCompleted()
{
EventHandler handler = Completed;
if (handler != null)