summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorMacDue <macdue@dueutil.tech>2023-03-31 21:33:58 +0100
committerLinus Groh <mail@linusgroh.de>2023-03-31 21:46:56 +0100
commitdf577b457ace4d0162c10141c2530ebaa735b721 (patch)
tree8a05e5ee14685fead28e89f927a3a1aca49b8a4c /Userland/Applications
parent7f3844c048deff96b903d84920c487fa2a4d97d5 (diff)
downloadserenity-df577b457ace4d0162c10141c2530ebaa735b721.zip
Browser: Add tooltip to reset zoom level button
Diffstat (limited to 'Userland/Applications')
-rw-r--r--Userland/Applications/Browser/Tab.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/Browser/Tab.cpp b/Userland/Applications/Browser/Tab.cpp
index e412d80639..7b69d97dfe 100644
--- a/Userland/Applications/Browser/Tab.cpp
+++ b/Userland/Applications/Browser/Tab.cpp
@@ -202,6 +202,7 @@ Tab::Tab(BrowserWindow& window)
this);
m_reset_zoom_button = toolbar.add<GUI::Button>();
+ m_reset_zoom_button->set_tooltip("Reset zoom level");
m_reset_zoom_button->on_click = [&](auto) {
view().reset_zoom();
update_reset_zoom_button();