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

Browser: Add context menu item for selecting all text

This commit is contained in:
Timothy Flynn 2021-07-14 08:55:36 -04:00 committed by Andreas Kling
parent ae910e4370
commit 615a1c7210
3 changed files with 12 additions and 0 deletions

View file

@ -333,6 +333,7 @@ Tab::Tab(BrowserWindow& window, Type type)
m_page_context_menu->add_action(window.reload_action());
m_page_context_menu->add_separator();
m_page_context_menu->add_action(window.copy_selection_action());
m_page_context_menu->add_action(window.select_all_action());
m_page_context_menu->add_separator();
m_page_context_menu->add_action(window.view_source_action());
m_page_context_menu->add_action(window.inspect_dom_tree_action());