Skip to content

Commit

Permalink
Coding style fix in guiHyperText.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuzzy2 committed Jun 21, 2024
1 parent 0f12a32 commit e211a5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/guiHyperText.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1236,10 +1236,10 @@ void GUIHyperText::draw()
m_vscrollbar->setPos(0);
m_vscrollbar->setVisible(false);
}
if (m_drawer_ready)
if (m_drawer_ready) {
m_drawer.draw(AbsoluteClippingRect,
m_display_text_rect.UpperLeftCorner + m_text_scrollpos);
else
} else
m_drawer_ready = true;

// draw children
Expand Down

0 comments on commit e211a5f

Please sign in to comment.