Profiler: Remove "Signpost " prefix from timeline tooltips

This commit is contained in:
Andreas Kling 2021-08-12 21:40:05 +02:00
commit 5a2ccbffc5
Notes: sideshowbarker 2024-07-18 07:03:12 +09:00

View file

@ -135,7 +135,7 @@ void TimelineTrack::mousemove_event(GUI::MouseEvent& event)
constexpr int hoverable_padding = 2; constexpr int hoverable_padding = 2;
Gfx::IntRect hoverable_rect { x - hoverable_padding, frame_thickness(), hoverable_padding * 2, height() - frame_thickness() * 2 }; Gfx::IntRect hoverable_rect { x - hoverable_padding, frame_thickness(), hoverable_padding * 2, height() - frame_thickness() * 2 };
if (hoverable_rect.contains_horizontally(event.x())) { 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; hovering_a_signpost = true;
return IterationDecision::Break; return IterationDecision::Break;
} }