Move popup to -Width, -Height

This commit is contained in:
Usman Shafiq
2022-03-24 03:09:17 -04:00
parent 1b35dbe464
commit 8d1701ffb8

View File

@@ -15,7 +15,7 @@ namespace VRCX
public InvisPopup()
{
StartPosition = FormStartPosition.Manual;
Location = new Point(0, 0);
Location = new Point(-Width, -Height);
InitializeComponent();
}
}