Skip to content

Commit

Permalink
Revert "fixed transparent windows (#833)" (#834)
Browse files Browse the repository at this point in the history
This reverts commit eedbad3.
  • Loading branch information
dklassic authored Nov 2, 2023
1 parent eedbad3 commit a57e085
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/platform_impl/windows/window_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,6 @@ impl WindowFlags {
if self.contains(WindowFlags::NO_BACK_BUFFER) {
style_ex |= WS_EX_NOREDIRECTIONBITMAP;
}
if self.contains(WindowFlags::TRANSPARENT) {
style_ex |= WS_EX_LAYERED;
}
if self.contains(WindowFlags::CHILD) {
style |= WS_CHILD; // This is incompatible with WS_POPUP if that gets added eventually.
}
Expand Down

0 comments on commit a57e085

Please sign in to comment.