Fix multiple file name retrievals in a row.

This commit is contained in:
Bartosz Taudul 2018-08-18 20:38:14 +02:00
parent 42636cfe89
commit cb51fdec20

View File

@ -3550,9 +3550,9 @@ void View::DrawZoneInfoWindow()
ImGui::PopStyleColor( 3 ); ImGui::PopStyleColor( 3 );
} }
} }
if( FileExists( m_worker.GetString( srcloc.file ) ) )
{
const auto fileName = m_worker.GetString( srcloc.file ); const auto fileName = m_worker.GetString( srcloc.file );
if( FileExists( fileName ) )
{
ImGui::SameLine(); ImGui::SameLine();
bool hilite = m_textEditorFile == fileName; bool hilite = m_textEditorFile == fileName;
if( hilite ) if( hilite )
@ -3911,9 +3911,9 @@ void View::DrawGpuInfoWindow()
ImGui::PopStyleColor( 3 ); ImGui::PopStyleColor( 3 );
} }
} }
if( FileExists( m_worker.GetString( srcloc.file ) ) )
{
const auto fileName = m_worker.GetString( srcloc.file ); const auto fileName = m_worker.GetString( srcloc.file );
if( FileExists( fileName ) )
{
ImGui::SameLine(); ImGui::SameLine();
bool hilite = m_textEditorFile == fileName; bool hilite = m_textEditorFile == fileName;
if( hilite ) if( hilite )
@ -6984,12 +6984,13 @@ void View::DrawFrameTreeLevel( std::vector<CallstackFrameTree>& tree, int& idx )
{ {
ImGui::SameLine(); ImGui::SameLine();
} }
ImGui::TextDisabled( "%s:%i", m_worker.GetString( frame->file ), frame->line ); const auto fileName = m_worker.GetString( frame->file );
ImGui::TextDisabled( "%s:%i", fileName, frame->line );
if( ImGui::IsItemClicked( 1 ) ) if( ImGui::IsItemClicked( 1 ) )
{ {
if( FileExists( m_worker.GetString( frame->file ) ) ) if( FileExists( fileName ) )
{ {
SetTextEditorFile( m_worker.GetString( frame->file ), frame->line ); SetTextEditorFile( fileName, frame->line );
} }
else else
{ {