diff options
| author | Chenj168 <62330325+Chenj168@users.noreply.github.com> | 2020-03-25 02:48:03 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-24 18:48:03 +0100 |
| commit | d0960e75aaa597f82905a64362bc8e104dc09bc3 (patch) | |
| tree | 438b8044a02e0780400ca3f4e81566b5d14c1120 /Ryujinx.Debugger | |
| parent | e5902625318cf0d7e0d2f71a3480a0d5ac5ab886 (diff) | |
Fix the item name cannot be displayed in profiler view. (#1021)
Diffstat (limited to 'Ryujinx.Debugger')
| -rw-r--r-- | Ryujinx.Debugger/UI/ProfilerWidget.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Debugger/UI/ProfilerWidget.cs b/Ryujinx.Debugger/UI/ProfilerWidget.cs index 0dc4b84f..b14c8922 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); |
