mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-21 03:11:40 +00:00
Added ComboBox to the focus check for the docker panel so that it receives key events (suggested by Xabis)
This commit is contained in:
parent
704a7a120a
commit
90f7d1dbf8
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
|
||||
// We have focus when we need the keyboard for input
|
||||
// Otherwise we don't want the focus and the docker may collapse
|
||||
return (ac is TextBox) || (ac is RichTextBox) || (ac is NumericUpDown);
|
||||
return (ac is TextBox) || (ac is RichTextBox) || (ac is NumericUpDown) || (ac is ComboBox);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue