diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/RadioButton.cpp')
-rw-r--r-- | Userland/Libraries/LibGUI/RadioButton.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/RadioButton.cpp b/Userland/Libraries/LibGUI/RadioButton.cpp index 7d97a485b3..f4763976c6 100644 --- a/Userland/Libraries/LibGUI/RadioButton.cpp +++ b/Userland/Libraries/LibGUI/RadioButton.cpp @@ -50,7 +50,7 @@ void RadioButton::paint_event(PaintEvent& event) Gfx::IntRect text_rect { circle_rect.right() + 7, 0, font().width(text()), font().glyph_height() }; text_rect.center_vertically_within(rect()); - paint_text(painter, text_rect, font(), Gfx::TextAlignment::TopLeft, Gfx::TextWrapping::DontWrap); + paint_text(painter, text_rect, font(), Gfx::TextAlignment::TopLeft); if (is_focused()) painter.draw_focus_rect(text_rect.inflated(6, 6), palette().focus_outline()); |