1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-19 01:04:20 +00:00

Projucer: Fixed a bug where the SVG Path Converter tool was drawing an invisible path preview

This commit is contained in:
ed 2017-05-25 12:41:37 +01:00
parent ba36008560
commit db614c82ad

View file

@ -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));
}