Properties: fix click not working multiple times on a color

This commit is contained in:
Jon Evans 2023-06-29 23:11:50 -04:00
parent 59495971ee
commit 8fcd58038b
1 changed files with 6 additions and 0 deletions

View File

@ -252,5 +252,11 @@ wxPGWindowList PG_COLOR_EDITOR::CreateControls( wxPropertyGrid* aGrid, wxPGPrope
aGrid->ChangePropertyValue( aProperty, val );
}
// Deselect property so that this gets called again on next click
aGrid->CallAfter( [=]()
{
aGrid->RemoveFromSelection( aProperty );
} );
return nullptr;
}