From 8d1701ffb8a5c2219d1ae84ccb126a17e156e7c2 Mon Sep 17 00:00:00 2001 From: Usman Shafiq Date: Thu, 24 Mar 2022 03:09:17 -0400 Subject: [PATCH] Move popup to -Width, -Height --- InvisPopup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvisPopup.cs b/InvisPopup.cs index a26c411c..d3017894 100644 --- a/InvisPopup.cs +++ b/InvisPopup.cs @@ -15,7 +15,7 @@ namespace VRCX public InvisPopup() { StartPosition = FormStartPosition.Manual; - Location = new Point(0, 0); + Location = new Point(-Width, -Height); InitializeComponent(); } }