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:
authorBertrand Le Roy <beleroy@microsoft.com>2018-10-04 03:09:15 +0300
committerBertrand Le Roy <beleroy@microsoft.com>2018-10-04 03:09:15 +0300
commit3340dea88beaf03dcdd296add134ee200b953507 (patch)
tree86de95fe5b4a4f4bad3d37504de3bfb44a31505f /Xamarin.PropertyEditing.Mac/Controls/Custom
parent860b39e0b7bca9d57c270fe442bf87a2ce65a697 (diff)
Acknowledge numeric spin control value changes on enter and tab without re-breaking the color picker.
Diffstat (limited to 'Xamarin.PropertyEditing.Mac/Controls/Custom')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs
index c77d1a5..99649ff 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs
@@ -254,6 +254,7 @@ namespace Xamarin.PropertyEditing.Mac
editing = true;
SetValue (numericEditor.StringValue);
EditingEnded?.Invoke (this, EventArgs.Empty);
+ NotifyingValueChanged (EventArgs.Empty);
editing = false;
}
}