From 3126ed303e42a0f150bf5fb0088bd080225baa33 Mon Sep 17 00:00:00 2001 From: Andy Adshead Date: Sat, 26 Jan 2019 20:08:44 +0000 Subject: [PATCH] Update initial window position --- Ryujinx.Profiler/UI/ProfileWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.Profiler/UI/ProfileWindow.cs b/Ryujinx.Profiler/UI/ProfileWindow.cs index 4448ae7f43..7d911c0758 100644 --- a/Ryujinx.Profiler/UI/ProfileWindow.cs +++ b/Ryujinx.Profiler/UI/ProfileWindow.cs @@ -43,9 +43,9 @@ namespace Ryujinx private bool showInactive = true, Paused = false; public ProfileWindow() - : base(400, 720) + : base(1280, 720) { - Location = new Point(DisplayDevice.Default.Width - 400, (DisplayDevice.Default.Height - 720) / 2); + Location = new Point(DisplayDevice.Default.Width - 1280, (DisplayDevice.Default.Height - 720) - 50); Title = "Profiler"; sortAction = null; BackspaceDownTime = 0;