mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
Fix order of parameters
This commit is contained in:
@@ -39,7 +39,7 @@ namespace Terminal.Gui {
|
||||
|
||||
private void Initialize (ComboBox container, bool hideDropdownListOnClick)
|
||||
{
|
||||
this.container = container ?? throw new ArgumentNullException ("ComboBox container cannot be null.", nameof (container));
|
||||
this.container = container ?? throw new ArgumentNullException (nameof(container), "ComboBox container cannot be null.");
|
||||
HideDropdownListOnClick = hideDropdownListOnClick;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user