1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Projucer: Correct default height multiplier in previous commit

This commit is contained in:
ed 2018-03-19 17:14:47 +00:00
parent 8643d958c1
commit b958ea92c2

View file

@ -326,7 +326,7 @@ public:
auto nameWidth = font.getStringWidthFloat (pp->getName());
if (availableTextWidth == 0)
return 1;
return 0;
return static_cast<int> (nameWidth / availableTextWidth);
}