1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

GTextEditor: Introduce triple click to select all

This commit is contained in:
Robin Burchell 2019-05-16 00:40:55 +02:00 committed by Andreas Kling
parent c4610b825d
commit 8aecebe8f3
2 changed files with 23 additions and 0 deletions

View file

@ -211,4 +211,5 @@ private:
RetainPtr<GAction> m_copy_action;
RetainPtr<GAction> m_paste_action;
RetainPtr<GAction> m_delete_action;
CElapsedTimer m_triple_click_timer;
};