diff options
author | Andreas Kling <kling@serenityos.org> | 2023-05-05 15:18:20 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-05-05 16:58:08 +0200 |
commit | 60312f2c83a1c4c4d941cfc56305e0e766b14b93 (patch) | |
tree | d1b0778e06c3c7cb04b13030b85586fa2b34beef /Ladybird/Tab.h | |
parent | f0f82c6391cdc7722531ccf2e5001e9c1ccb1068 (diff) | |
download | serenity-60312f2c83a1c4c4d941cfc56305e0e766b14b93.zip |
Ladybird: Remove the "home" icon from the toolbar (and the concept)
This feature isn't really that useful in practice, so let's remove it.
(Other browsers haven't had this action for years either.)
Diffstat (limited to 'Ladybird/Tab.h')
-rw-r--r-- | Ladybird/Tab.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Ladybird/Tab.h b/Ladybird/Tab.h index 5a0a45906d..527b2a6ba1 100644 --- a/Ladybird/Tab.h +++ b/Ladybird/Tab.h @@ -43,7 +43,6 @@ public slots: void page_favicon_changed(QIcon); void back(); void forward(); - void home(); void reload(); signals: @@ -68,7 +67,6 @@ private: OwnPtr<QAction> m_back_action; OwnPtr<QAction> m_forward_action; - OwnPtr<QAction> m_home_action; OwnPtr<QAction> m_reload_action; int tab_index(); |