mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
This commit is contained in:
@@ -266,14 +266,14 @@ internal class NumericUpDownEditor<T> : View where T : notnull
|
||||
|
||||
void NumericUpDownOnIncrementChanged (object? o, EventArgs<T> eventArgs)
|
||||
{
|
||||
_increment.Text = _numericUpDown.Increment.ToString ();
|
||||
_increment.Text = _numericUpDown!.Increment?.ToString ();
|
||||
}
|
||||
|
||||
Add (_numericUpDown);
|
||||
|
||||
_value.Text = _numericUpDown.Text;
|
||||
_format.Text = _numericUpDown.Format;
|
||||
_increment.Text = _numericUpDown.Increment.ToString ();
|
||||
_increment.Text = _numericUpDown!.Increment?.ToString ();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user