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 <me@ermau.com>2018-04-10 20:41:29 +0300
committerGitHub <noreply@github.com>2018-04-10 20:41:29 +0300
commit57f5f4430942723a68ebdc8c78f83d0cd948b79d (patch)
tree84c5c34d8af4db1c03e9d6b84c1a133cdc5cfbe9 /Xamarin.PropertyEditing
parent4fbf40551889e7b5952b654a8506a59cae718220 (diff)
parent3590a247ba834e79dd3f13e446d566ebd74ae72d (diff)
Merge pull request #261 from xamarin/dominique-CombinablePropertyEditor
[Mac]Initial implementation for Combinable Property Editor
Diffstat (limited to 'Xamarin.PropertyEditing')
-rw-r--r--Xamarin.PropertyEditing/ViewModels/CombinablePropertyViewModel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.PropertyEditing/ViewModels/CombinablePropertyViewModel.cs b/Xamarin.PropertyEditing/ViewModels/CombinablePropertyViewModel.cs
index 453cd1c..b2fa0f6 100644
--- a/Xamarin.PropertyEditing/ViewModels/CombinablePropertyViewModel.cs
+++ b/Xamarin.PropertyEditing/ViewModels/CombinablePropertyViewModel.cs
@@ -78,8 +78,6 @@ namespace Xamarin.PropertyEditing.ViewModels
return;
using (await AsyncWork.RequestAsyncWork (this)) {
- await base.UpdateCurrentValueAsync ();
-
var newValues = new Dictionary<string, bool?> (this.predefinedValues.PredefinedValues.Count);
ValueInfo<IReadOnlyList<TValue>>[] values = await Task.WhenAll (Editors.Select (ed => ed.GetValueAsync<IReadOnlyList<TValue>> (Property, Variation)).ToArray ());
@@ -112,6 +110,8 @@ namespace Xamarin.PropertyEditing.ViewModels
}
}
this.fromUpdate = false;
+
+ await base.UpdateCurrentValueAsync ();
}
}