Re-enabled $combochecklist_features->UseAltPopupWindow(), without this

line the combo box popup was not reacting to mouse events on Windows 10.
This commit is contained in:
bubnikv 2018-02-13 17:46:23 +01:00
parent 030fc9c320
commit 6cf8264362
2 changed files with 4 additions and 1 deletions

View file

@ -227,7 +227,7 @@ int combochecklist_get_flags(wxComboCtrl* comboCtrl)
for (unsigned int i = 0; i < popup->GetCount(); ++i)
{
if (popup->IsChecked(i))
flags += (int)std::pow(2.0f, (float)i);
flags |= 1 << i;
}
}