1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00

LibGUI: Remove now-unused undo coalescing timer from GUI::TextEditor

This is no longer used since commands handle merging themselves.
This commit is contained in:
Andreas Kling 2021-05-08 22:05:37 +02:00
parent ce90d87eb6
commit 194a90884c
Notes: sideshowbarker 2024-07-18 18:28:35 +09:00
2 changed files with 0 additions and 16 deletions

View file

@ -34,11 +34,6 @@ TextDocument::TextDocument(Client* client)
client->document_did_update_undo_stack();
}
};
m_undo_timer = Core::Timer::create_single_shot(
2000, [this] {
update_undo();
});
}
TextDocument::~TextDocument()
@ -316,9 +311,6 @@ void TextDocument::update_views(Badge<TextDocumentLine>)
void TextDocument::notify_did_change()
{
if (m_undo_timer)
m_undo_timer->restart();
if (m_client_notifications_enabled) {
for (auto* client : m_clients)
client->document_did_change();
@ -846,11 +838,6 @@ void RemoveTextCommand::undo()
m_document.set_all_cursors(new_cursor);
}
void TextDocument::update_undo()
{
// FIXME: Maybe seal the last command somehow?
}
TextPosition TextDocument::insert_at(const TextPosition& position, const StringView& text, const Client* client)
{
TextPosition cursor = position;