mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-06 22:46:06 +02:00
Moved PInvoke stuff to seperate class, Added jank force refresh of window on theme change
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace VRCX
|
||||
{
|
||||
public partial class InvisPopup : Form
|
||||
{
|
||||
public InvisPopup()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
protected override void SetVisibleCore(bool value)
|
||||
{
|
||||
this.WindowState = FormWindowState.Minimized;
|
||||
base.SetVisibleCore(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user