Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisThrasher committed Sep 28, 2023
1 parent 1cd6fd0 commit 3033434
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/SFML/Graphics/Text.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,14 @@ void Text::ensureGeometryUpdate() const
addLine(m_vertices, horizontalOffset, x, y, m_fillColor, strikeThroughOffset, underlineThickness);

if (m_outlineThickness != 0)
addLine(m_outlineVertices, horizontalOffset, x, y, m_outlineColor, strikeThroughOffset, underlineThickness, m_outlineThickness);
addLine(m_outlineVertices,
horizontalOffset,
x,
y,
m_outlineColor,
strikeThroughOffset,
underlineThickness,
m_outlineThickness);
}

prevChar = curChar;
Expand Down

0 comments on commit 3033434

Please sign in to comment.