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
commit 27d1e7f432
Notes: sideshowbarker 2024-07-19 06:48:33 +09:00
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;
};