Second attempt to fix random Taskbar reorder issue

This commit is contained in:
Usman Shafiq
2022-03-24 02:27:57 -04:00
parent 01cb6ca0e1
commit a41d65a438
3 changed files with 31 additions and 17 deletions
+7 -5
View File
@@ -14,13 +14,15 @@ namespace VRCX
{
public InvisPopup()
{
StartPosition = FormStartPosition.Manual;
//Location = new Point(-Height - 100, 0);
Location = new Point(0, 0);
InitializeComponent();
}
protected override void SetVisibleCore(bool value)
{
this.WindowState = FormWindowState.Minimized;
base.SetVisibleCore(value);
}
//protected override void SetVisibleCore(bool value)
//{
// base.SetVisibleCore(value);
//}
}
}