Browse Source

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

pull/20084/head
Emmanuel Hansen 3 months ago
committed by Julien Lebosquain
parent
commit
d7c0b1f6a8
  1. 2
      src/Windows/Avalonia.Win32/Win32Platform.cs

2
src/Windows/Avalonia.Win32/Win32Platform.cs

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

Loading…
Cancel
Save