1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-01 05:03:53 +00:00

Increase contrast.

This commit is contained in:
Bartosz Taudul 2019-06-06 01:45:41 +02:00
parent 2b917c6adf
commit a37348c5c7

View File

@ -527,7 +527,7 @@ void View::DrawHelpMarker( const char* desc ) const
void View::DrawTextContrast( ImDrawList* draw, const ImVec2& pos, uint32_t color, const char* text )
{
draw->AddText( pos + ImVec2( 1, 1 ), 0x88000000, text );
draw->AddText( pos + ImVec2( 1, 1 ), 0xAA000000, text );
draw->AddText( pos, color, text );
}