Remove parenthesis from callstack location.

This commit is contained in:
Bartosz Taudul 2018-06-20 17:07:48 +02:00
parent e495747b88
commit cef972fe25

View File

@ -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();
}