1
0
Fork 0

folding: Fix crash when clicking fold column header

This commit is contained in:
arch1t3cht 2022-12-11 18:53:23 +01:00
parent 38efde92e3
commit abe2a81c99
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ void BaseGrid::OnMouseEvent(wxMouseEvent &event) {
CaptureMouse();
}
if (columns[col]->OnMouseEvent(dlg, context, event)) {
if (dlg && columns[col]->OnMouseEvent(dlg, context, event)) {
return;
}