From d0960e75aaa597f82905a64362bc8e104dc09bc3 Mon Sep 17 00:00:00 2001 From: Chenj168 <62330325+Chenj168@users.noreply.github.com> Date: Wed, 25 Mar 2020 02:48:03 +0900 Subject: [PATCH] Fix the item name cannot be displayed in profiler view. (#1021) --- 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 0dc4b84f4..b14c8922e 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);