diff options
-rw-r--r-- | Userland/Libraries/LibGUI/TextDocument.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/TextDocument.cpp b/Userland/Libraries/LibGUI/TextDocument.cpp index 6e0d7728c4..f4c425c078 100644 --- a/Userland/Libraries/LibGUI/TextDocument.cpp +++ b/Userland/Libraries/LibGUI/TextDocument.cpp @@ -28,7 +28,7 @@ TextDocument::TextDocument(Client* client) append_line(make<TextDocumentLine>(*this)); set_modified(false); - // TODO: Instead of a repating timer, this we should call a delayed 2 sec timer when the user types. + // FIXME: Instead of a repeating timer, we should punt a deferred single-shot 2-sec timer on user input. m_undo_timer = Core::Timer::construct( 2000, [this] { update_undo_timer(); |