mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Workaround for a Visual Studio error
This commit is contained in:
parent
8e4e4af795
commit
e8490fbf71
1 changed files with 1 additions and 1 deletions
|
|
@ -214,7 +214,7 @@ void TextLayout::addLine (Line* line)
|
|||
|
||||
void TextLayout::draw (Graphics& g, Rectangle<float> area) const
|
||||
{
|
||||
auto origin = justification.appliedToRectangle ({ width, getHeight() }, area).getPosition();
|
||||
auto origin = justification.appliedToRectangle (Rectangle<float> (width, getHeight()), area).getPosition();
|
||||
|
||||
auto& context = g.getInternalContext();
|
||||
auto clip = context.getClipBounds();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue