-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NumericUpDown: Fixes #952 and improve stability #953
Conversation
@@ -59,7 +85,7 @@ public class NumericUpDown : Control | |||
#endregion | |||
|
|||
private double _internalIntervalMultiplierForCalculation = DefaultInterval; | |||
private double _internalLargeChange; | |||
private double _internalLargeChange = DefaultInterval * 100; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think this is better add in the constructor of the instances no ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can, but since DefaultInterval is a const there would be no differences.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah ok, if is a const ok :P
…XAML other than the standard ones (C,E,N,F,G)
Is this finished? If yes we can merge this and release v0.12.1 ✨ |
I will review it in the next few hours and give you the O.K. |
NumericUpDown: Fixes #952 and improve stability
No description provided.