Browse Source

win32 - do not activate embedded windows when shown (#20027)

Emmanuel Hansen 3 weeks ago
parent
commit
dfd3b8864d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Windows/Avalonia.Win32/Win32Platform.cs

+ 1 - 1
src/Windows/Avalonia.Win32/Win32Platform.cs

@@ -240,7 +240,7 @@ namespace Avalonia.Win32
         public IWindowImpl CreateEmbeddableWindow()
         {
             var embedded = new EmbeddedWindowImpl();
-            embedded.Show(true, false);
+            embedded.Show(false, false);
             return embedded;
         }