mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Remove parenthesis from callstack location.
This commit is contained in:
parent
e495747b88
commit
cef972fe25
@ -4804,7 +4804,7 @@ void View::DrawCallstackWindow()
|
||||
ImGui::TextWrapped( "%s", m_worker.GetString( frame->name ) );
|
||||
ImGui::NextColumn();
|
||||
ImGui::PushTextWrapPos( 0.0f );
|
||||
ImGui::TextDisabled( "(%s:%i)", m_worker.GetString( frame->file ), frame->line );
|
||||
ImGui::TextDisabled( "%s:%i", m_worker.GetString( frame->file ), frame->line );
|
||||
ImGui::PopTextWrapPos();
|
||||
ImGui::NextColumn();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user