Skip to content

Commit

Permalink
core-graphics: Fix kCGWindowSharingReadWrite value (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Jul 20, 2024
1 parent 3570256 commit 2847e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core-graphics/src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub type CGWindowID = u32;
pub type CGWindowSharingType = u32;
pub const kCGWindowSharingNone: CGWindowSharingType = 0;
pub const kCGWindowSharingReadOnly: CGWindowSharingType = 1;
pub const kCGWindowSharingReadWrite: CGWindowSharingType = 1;
pub const kCGWindowSharingReadWrite: CGWindowSharingType = 2;

pub type CGWindowBackingType = u32;
pub const kCGWindowBackingStoreRetained: CGWindowBackingType = 0;
Expand Down

0 comments on commit 2847e06

Please sign in to comment.