From feefbcfca37c2f5cf0f3b484282cf372119ab5d5 Mon Sep 17 00:00:00 2001 From: Chenj Date: Tue, 24 Mar 2020 16:06:17 +0900 Subject: [PATCH] Fix the item name cannot be displayed in profiler view. --- Ryujinx.Debugger/UI/ProfilerWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Debugger/UI/ProfilerWidget.cs b/Ryujinx.Debugger/UI/ProfilerWidget.cs index 0dc4b84f42..b14c8922e7 100644 --- a/Ryujinx.Debugger/UI/ProfilerWidget.cs +++ b/Ryujinx.Debugger/UI/ProfilerWidget.cs @@ -481,7 +481,7 @@ namespace Ryujinx.Debugger.UI float y = GetLineY(yOffset, LineHeight, LinePadding, true, verticalIndex); - canvas.DrawText(entry.Key.SessionGroup, new SKPoint(xOffset, y), textFont); + canvas.DrawText(entry.Key.SessionItem, new SKPoint(xOffset, y), textFont); columnWidth = textFont.MeasureText(entry.Key.SessionItem);