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

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Maupin <ermaup@microsoft.com>2018-08-31 21:23:27 +0300
committerEric Maupin <ermaup@microsoft.com>2018-08-31 21:23:30 +0300
commitb875e0c1a6fabed19e02c4148e829ddd91a4ed38 (patch)
tree2e180ec4f58bbde83989dc8f75f056a1d3495a4f
parent738949a696525c3166ef8da269f522b525fdcc19 (diff)
[Win] Switch object editor to more reliable host finder
-rw-r--r--Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs b/Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs
index 244799f..7ecd891 100644
--- a/Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs
+++ b/Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs
@@ -31,7 +31,7 @@ namespace Xamarin.PropertyEditing.Windows
{
var vm = (ObjectPropertyViewModel)sender;
- var panel = this.FindParent<PropertyEditorPanel> ();
+ var panel = this.FindPropertiesHost ();
ITypeInfo type = TypeSelectorWindow.RequestType (panel, vm.AssignableTypes);
e.SelectedType = type;