1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Fixed a bug in the GUI editor where some paint element properties weren't being displayed

This commit is contained in:
ed 2017-08-02 08:18:42 +01:00
parent 606a81cc14
commit 956d16bf8d

View file

@ -134,7 +134,7 @@ public:
if (paintRoutine.containsElement (pe))
{
Array <PropertyComponent*> props;
pe->getEditableProperties (props, numSelected);
pe->getEditableProperties (props, numSelected > 1);
propsPanel->addSection (pe->getTypeName(), props);
}