mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-13 03:41:48 +00:00
Use message color on message lists.
This commit is contained in:
parent
4850e19ebd
commit
8cbd83c752
@ -4599,7 +4599,9 @@ void View::DrawZoneInfoWindow()
|
|||||||
}
|
}
|
||||||
ImGui::PopID();
|
ImGui::PopID();
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
|
ImGui::PushStyleColor( ImGuiCol_Text, (*msgit)->color );
|
||||||
ImGui::TextWrapped( "%s", m_worker.GetString( (*msgit)->ref ) );
|
ImGui::TextWrapped( "%s", m_worker.GetString( (*msgit)->ref ) );
|
||||||
|
ImGui::PopStyleColor();
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
}
|
}
|
||||||
while( ++msgit != msgend );
|
while( ++msgit != msgend );
|
||||||
@ -5825,7 +5827,9 @@ void View::DrawMessages()
|
|||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::TextDisabled( "(0x%" PRIX64 ")", v->thread );
|
ImGui::TextDisabled( "(0x%" PRIX64 ")", v->thread );
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
|
ImGui::PushStyleColor( ImGuiCol_Text, v->color );
|
||||||
ImGui::TextWrapped( "%s", m_worker.GetString( v->ref ) );
|
ImGui::TextWrapped( "%s", m_worker.GetString( v->ref ) );
|
||||||
|
ImGui::PopStyleColor();
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user