We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 337d507 commit 482a310Copy full SHA for 482a310
src/platform_impl/windows/window_state.rs
@@ -278,6 +278,9 @@ impl WindowFlags {
278
if self.contains(WindowFlags::NO_BACK_BUFFER) {
279
style_ex |= WS_EX_NOREDIRECTIONBITMAP;
280
}
281
+ if self.contains(WindowFlags::TRANSPARENT) {
282
+ style_ex |= WS_EX_LAYERED;
283
+ }
284
if self.contains(WindowFlags::CHILD) {
285
style |= WS_CHILD; // This is incompatible with WS_POPUP if that gets added eventually.
286
0 commit comments