From 5b052034fe677677ab4c4ef8180e9563030021ea 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 56be704..dd3cf58 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) {