From db614c82ad6fd07db95d94fb3458ca2f7419d701 Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 25 May 2017 12:41:37 +0100 Subject: [PATCH] Projucer: Fixed a bug where the SVG Path Converter tool was drawing an invisible path preview --- extras/Projucer/Source/Utility/jucer_SVGPathDataComponent.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extras/Projucer/Source/Utility/jucer_SVGPathDataComponent.h b/extras/Projucer/Source/Utility/jucer_SVGPathDataComponent.h index 5363684e2b..522e54f1d3 100644 --- a/extras/Projucer/Source/Utility/jucer_SVGPathDataComponent.h +++ b/extras/Projucer/Source/Utility/jucer_SVGPathDataComponent.h @@ -104,6 +104,8 @@ public: void paint (Graphics& g) override { g.setColour (findColour (secondaryBackgroundColourId)); + + g.setColour (findColour (defaultTextColourId)); g.fillPath (path, path.getTransformToScaleToFit (previewPathArea.reduced (4).toFloat(), true)); }