diff --git a/Userland/Services/Taskbar/QuickLaunchWidget.cpp b/Userland/Services/Taskbar/QuickLaunchWidget.cpp index 4860ae2875..30d35b4023 100644 --- a/Userland/Services/Taskbar/QuickLaunchWidget.cpp +++ b/Userland/Services/Taskbar/QuickLaunchWidget.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -209,6 +210,9 @@ void QuickLaunchWidget::mousemove_event(GUI::MouseEvent& event) entry->set_hovered(rect.contains(event.position())); if (entry->is_pressed()) m_dragging = true; + + if (entry->is_hovered()) + GUI::Application::the()->show_tooltip(String::from_deprecated_string(entry->name()).release_value_but_fixme_should_propagate_errors(), this); }); if (m_dragging)