1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:58:12 +00:00

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

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] {