HandleTimelineMouse() doesn't need pxns parameter.

This commit is contained in:
Bartosz Taudul
2023-04-16 17:36:04 +02:00
parent dec4713854
commit 8d565e46d6
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ namespace tracy
extern double s_time;
void View::HandleTimelineMouse( int64_t timespan, const ImVec2& wpos, float w, double& pxns )
void View::HandleTimelineMouse( int64_t timespan, const ImVec2& wpos, float w )
{
assert( timespan > 0 );
auto& io = ImGui::GetIO();
@@ -283,7 +283,7 @@ void View::DrawTimeline()
v->range.StartFrame();
HandleRange( v->range, timespan, ImGui::GetCursorScreenPos(), w );
}
HandleTimelineMouse( timespan, ImGui::GetCursorScreenPos(), w, pxns );
HandleTimelineMouse( timespan, ImGui::GetCursorScreenPos(), w );
}
if( ImGui::IsWindowFocused( ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem ) )
{