Fixes #4374 - Nukes all (?) legacy Driver and Application stuff; revamps tests (#4376)

This commit is contained in:
Tig
2025-11-11 16:29:33 -07:00
committed by GitHub
parent 559dea9239
commit d53fcd7485
310 changed files with 14827 additions and 16911 deletions

View File

@@ -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 ();
}
}