mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Mark categories that need attention.
This commit is contained in:
parent
a6b9369430
commit
16bc01551e
@ -1443,7 +1443,16 @@ static void DrawContents()
|
|||||||
auto& c = *categories++;
|
auto& c = *categories++;
|
||||||
if( c->unlockTime > 0 )
|
if( c->unlockTime > 0 )
|
||||||
{
|
{
|
||||||
if( ImGui::BeginTabItem( c->name ) )
|
char tmp[256];
|
||||||
|
if( s_achievements.CategoryNeedsAttention( c->id ) )
|
||||||
|
{
|
||||||
|
snprintf( tmp, 256, ICON_FA_CIRCLE_EXCLAMATION " %s###%s", c->name, c->id );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
snprintf( tmp, 256, "%s###%s", c->name, c->id );
|
||||||
|
}
|
||||||
|
if( ImGui::BeginTabItem( tmp ) )
|
||||||
{
|
{
|
||||||
ImGui::Columns( 2 );
|
ImGui::Columns( 2 );
|
||||||
DrawAchievements( c->items );
|
DrawAchievements( c->items );
|
||||||
|
Loading…
Reference in New Issue
Block a user