mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-25 20:48:22 +00:00
Fix display of annotations color on annotations list.
This commit is contained in:
@@ -143,7 +143,7 @@ void View::DrawAnnotationList()
|
||||
}
|
||||
if( !ctrl ) TooltipIfHovered( "Press ctrl key to enable removal" );
|
||||
ImGui::SameLine();
|
||||
ImGui::ColorButton( "c", ImGui::ColorConvertU32ToFloat4( ann->color ), ImGuiColorEditFlags_NoTooltip );
|
||||
ImGui::ColorButton( "c", ImGui::ColorConvertU32ToFloat4( ann->color | 0xFF000000 ), ImGuiColorEditFlags_NoTooltip );
|
||||
ImGui::SameLine();
|
||||
if( m_selectedAnnotation == ann.get() )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user