From 84b7eb0df1ca3a323367860d2aa3a1e6c24393ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lower?= Date: Tue, 16 Jan 2024 20:34:49 +0100 Subject: [PATCH] Wait for user to close Virtual Desktop warning dialog before starting Otherwise the warning can get burried under autostart config dialog and game window. --- UEVR/MainWindow.xaml.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UEVR/MainWindow.xaml.cs b/UEVR/MainWindow.xaml.cs index 4597089..b470d6b 100644 --- a/UEVR/MainWindow.xaml.cs +++ b/UEVR/MainWindow.xaml.cs @@ -685,13 +685,13 @@ private void Check_VirtualDesktop() { } private void MainWindow_Update() { - Update_InjectorConnectionStatus(); - Update_InjectStatus(); - if (m_virtualDesktopChecked == false) { m_virtualDesktopChecked = true; Check_VirtualDesktop(); } + + Update_InjectorConnectionStatus(); + Update_InjectStatus(); } private void MainWindow_Closing(object sender, System.ComponentModel.CancelEventArgs e) {