feat: enable shadows by default for undecorated window on Windows (#732)

This commit is contained in:
Amr Bashir
2023-05-09 16:43:12 +03:00
committed by GitHub
parent c6082173a9
commit 90ce80cd4d
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
"tao": "minor"
---
Enable shadows by default for undecorated window on Windows.

View File

@@ -63,7 +63,7 @@ impl Default for PlatformSpecificWindowBuilderAttributes {
drag_and_drop: true,
preferred_theme: None,
skip_taskbar: false,
decoration_shadow: false,
decoration_shadow: true,
}
}
}