Browse Source

Projucer: Correct default height multiplier in previous commit

tags/2021-05-28
ed 7 years ago
parent
commit
b958ea92c2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Project/UI/jucer_ContentViewComponents.h

+ 1
- 1
extras/Projucer/Source/Project/UI/jucer_ContentViewComponents.h View File

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


Loading…
Cancel
Save