diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-12 17:06:16 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-12 17:07:20 +0200 |
commit | 388ae07960795939e2883f8ea9e5220891e75127 (patch) | |
tree | e5daceff71efef8aa6d7dfd26850bddb95d0e4c9 /Applications/Browser/Tab.h | |
parent | 8c51063a88d3d3ae6e57798dbcd8d1af011f8f63 (diff) | |
download | serenity-388ae07960795939e2883f8ea9e5220891e75127.zip |
Browser: Some action fixes
- Use the same reload action in menu and toolbar
- Scope more actions inside Browser::Tab
Diffstat (limited to 'Applications/Browser/Tab.h')
-rw-r--r-- | Applications/Browser/Tab.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Applications/Browser/Tab.h b/Applications/Browser/Tab.h index 0c8946a083..3c6e554e58 100644 --- a/Applications/Browser/Tab.h +++ b/Applications/Browser/Tab.h @@ -62,6 +62,7 @@ private: RefPtr<Web::HtmlView> m_html_widget; RefPtr<GUI::Action> m_go_back_action; RefPtr<GUI::Action> m_go_forward_action; + RefPtr<GUI::Action> m_reload_action; RefPtr<GUI::TextBox> m_location_box; RefPtr<GUI::Button> m_bookmark_button; RefPtr<GUI::Window> m_dom_inspector_window; |