Condense source diff.

This commit is contained in:
Bartosz Taudul 2022-12-23 19:56:39 +01:00
parent b81d564f66
commit 314b1b48c8
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -372,7 +372,9 @@ void View::DrawCompare()
auto it = tfc.find( v );
assert( it != tfc.end() );
ImGui::PushFont( m_fixedFont );
ImGui::PushStyleVar( ImGuiStyleVar_ItemSpacing, ImVec2( 0, 0 ) );
PrintFile( it->second.data, it->second.len, 0xFF6666FF );
ImGui::PopStyleVar();
ImGui::PopFont();
ImGui::TreePop();
}
@ -394,7 +396,9 @@ void View::DrawCompare()
auto it = ofc.find( v );
assert( it != ofc.end() );
ImGui::PushFont( m_fixedFont );
ImGui::PushStyleVar( ImGuiStyleVar_ItemSpacing, ImVec2( 0, 0 ) );
PrintFile( it->second.data, it->second.len, 0xFF66DD66 );
ImGui::PopStyleVar();
ImGui::PopFont();
ImGui::TreePop();
}
@ -414,7 +418,9 @@ void View::DrawCompare()
if( ImGui::TreeNode( v.first ) )
{
ImGui::PushFont( m_fixedFont );
ImGui::PushStyleVar( ImGuiStyleVar_ItemSpacing, ImVec2( 0, 0 ) );
PrintDiff( v.second );
ImGui::PopStyleVar();
ImGui::PopFont();
ImGui::TreePop();
}