Skip to content

Commit

Permalink
Clarify window backdrop enum
Browse files Browse the repository at this point in the history
  • Loading branch information
crschnick committed Dec 14, 2024
1 parent ed24ad9 commit 48c9f96
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,14 @@ public int get() {
}

public enum DwmSystemBackDropType {
// DWMSBT_NONE
NONE(1),
// DWMSBT_MAINWINDOW
MICA(2),
MICA_ALT(4),
ACRYLIC(3);
// DWMSBT_TRANSIENTWINDOW
ACRYLIC(3),
// DWMSBT_TABBEDWINDOW
MICA_ALT(4);

private final int value;

Expand Down

0 comments on commit 48c9f96

Please sign in to comment.