LibGUI: Remove outdated FIXME in TextEditor

This commit is contained in:
Andreas Kling 2020-05-18 14:25:40 +02:00
parent 4402207b98
commit 088841202d
Notes: sideshowbarker 2024-07-19 06:31:34 +09:00

View file

@ -59,7 +59,6 @@ TextEditor::TextEditor(Type type)
set_document(TextDocument::create());
set_scrollbars_enabled(is_multi_line());
set_font(FontDatabase::the().get_by_name("Csilla Thin"));
// FIXME: Recompute vertical scrollbar step size on font change.
vertical_scrollbar().set_step(line_height());
m_cursor = { 0, 0 };
m_automatic_selection_scroll_timer = add<Core::Timer>(100, [this] {