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
fixed MSVC warning.
tags/2021-05-28
jules
12 years ago
parent
4b128378cf
commit
cc8662213b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp
+ 1
- 1
modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp
View File
@@ -110,7 +110,7 @@ public:
column += token.length;
}
as.draw (g, Rectangle<
int> (x, y, 10000, lineH).toFloat(
));
as.draw (g, Rectangle<
float> (x, y, 10000.0f, (float) lineH
));
}
private:
Write
Preview
Loading…
Cancel
Save