1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:27:45 +00:00

LibVT: Add "Open URL" and "Copy URL" to TerminalWidget context menu

These only show up when you right click a hyperlinked character cell.
This commit is contained in:
Andreas Kling 2020-05-09 16:42:42 +02:00
parent 7aa2acefd0
commit 27d1e7f432
2 changed files with 20 additions and 6 deletions

View file

@ -169,6 +169,7 @@ private:
RefPtr<GUI::Action> m_paste_action;
RefPtr<GUI::Menu> m_context_menu;
RefPtr<GUI::Menu> m_context_menu_for_hyperlink;
Core::ElapsedTimer m_triple_click_timer;
};