From 956d16bf8dc06363145bfc13c8e456cd1a5833f5 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 2 Aug 2017 08:18:42 +0100 Subject: [PATCH] Projucer: Fixed a bug in the GUI editor where some paint element properties weren't being displayed --- .../Source/ComponentEditor/ui/jucer_PaintRoutinePanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Projucer/Source/ComponentEditor/ui/jucer_PaintRoutinePanel.cpp b/extras/Projucer/Source/ComponentEditor/ui/jucer_PaintRoutinePanel.cpp index 601e917475..962728810d 100644 --- a/extras/Projucer/Source/ComponentEditor/ui/jucer_PaintRoutinePanel.cpp +++ b/extras/Projucer/Source/ComponentEditor/ui/jucer_PaintRoutinePanel.cpp @@ -134,7 +134,7 @@ public: if (paintRoutine.containsElement (pe)) { Array props; - pe->getEditableProperties (props, numSelected); + pe->getEditableProperties (props, numSelected > 1); propsPanel->addSection (pe->getTypeName(), props); }