summaryrefslogtreecommitdiff
path: root/Userland/DevTools/Profiler
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-08-12 21:40:05 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-13 03:03:53 +0200
commit5a2ccbffc5a455f48cc20af2c8073bd1799f675a (patch)
tree0a4eca7747986ee4cbf3bcb68751aeae63941fcc /Userland/DevTools/Profiler
parent0f1425c895ace40fbb10d68a55eeb3a6354479d3 (diff)
downloadserenity-5a2ccbffc5a455f48cc20af2c8073bd1799f675a.zip
Profiler: Remove "Signpost " prefix from timeline tooltips
Diffstat (limited to 'Userland/DevTools/Profiler')
-rw-r--r--Userland/DevTools/Profiler/TimelineTrack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/Profiler/TimelineTrack.cpp b/Userland/DevTools/Profiler/TimelineTrack.cpp
index 8b7158ba3a..dcaef94c16 100644
--- a/Userland/DevTools/Profiler/TimelineTrack.cpp
+++ b/Userland/DevTools/Profiler/TimelineTrack.cpp
@@ -135,7 +135,7 @@ void TimelineTrack::mousemove_event(GUI::MouseEvent& event)
constexpr int hoverable_padding = 2;
Gfx::IntRect hoverable_rect { x - hoverable_padding, frame_thickness(), hoverable_padding * 2, height() - frame_thickness() * 2 };
if (hoverable_rect.contains_horizontally(event.x())) {
- GUI::Application::the()->show_tooltip_immediately(String::formatted("Signpost {}, {}", signpost.signpost_string, signpost.arg2), this);
+ GUI::Application::the()->show_tooltip_immediately(String::formatted("{}, {}", signpost.signpost_string, signpost.arg2), this);
hovering_a_signpost = true;
return IterationDecision::Break;
}