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