Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAlan404 authored Sep 22, 2024
1 parent 8ddd10a commit 210c615
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/platform_impl/windows/window_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,9 @@ impl WindowFlags {
if self.contains(WindowFlags::IGNORE_CURSOR_EVENT) {
style_ex |= WS_EX_TRANSPARENT | WS_EX_LAYERED;
}
if self.contains(WindowFlags::TRANSPARENT) {
style_ex |= WS_EX_LAYERED;
}
if self.contains(WindowFlags::CLIP_CHILDREN) {
style |= WS_CLIPCHILDREN;
}
Expand Down

0 comments on commit 210c615

Please sign in to comment.