GTextEditor: Hide the horizontal scrollbar when line-wrapping is on

This commit is contained in:
Andreas Kling 2019-09-01 20:34:50 +02:00
parent 906582d8df
commit 77a58119e7
Notes: sideshowbarker 2024-07-19 12:25:30 +09:00

View File

@ -1419,6 +1419,7 @@ void GTextEditor::set_line_wrapping_enabled(bool enabled)
return;
m_line_wrapping_enabled = enabled;
horizontal_scrollbar().set_visible(!m_line_wrapping_enabled);
update_content_size();
recompute_all_visual_lines();
update();