Dot allow mouse wheel scroll in combobox textbox when list is open

This commit is contained in:
niksedk 2023-09-09 08:37:20 +02:00
parent bd4f2d6228
commit 44635667c1

View File

@ -520,7 +520,7 @@ namespace Nikse.SubtitleEdit.Controls
MouseWheel += (sender, e) =>
{
if (!Focused)
if (_textBox == null || !(_textBox.Focused || base.Focused))
{
return;
}