Преглед изворни кода

Fix the item name cannot be displayed in profiler view. (#1021)

Chenj168 пре 6 година
родитељ
комит
d0960e75aa
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Ryujinx.Debugger/UI/ProfilerWidget.cs

+ 1 - 1
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);