This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Projucer: Correct default height multiplier in previous commit
tags/2021-05-28
ed
7 years ago
parent
8643d958c1
commit
b958ea92c2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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());
if (availableTextWidth == 0)
return
1
;
return
0
;
return static_cast<int> (nameWidth / availableTextWidth);
}
Write
Preview
Loading…
Cancel
Save