Skip to content

Commit

Permalink
fix: update NSWindowTabbingMode enum values (#714)
Browse files Browse the repository at this point in the history
Signed-off-by: Gaauwe Rombouts <[email protected]>
  • Loading branch information
gaauwe authored Nov 12, 2024
1 parent ef896fe commit f6e7580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cocoa/src/appkit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ pub enum NSWindowTitleVisibility {
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum NSWindowTabbingMode {
NSWindowTabbingModeAutomatic = 0,
NSWindowTabbingModeDisallowed = 1,
NSWindowTabbingModePreferred = 2,
NSWindowTabbingModePreferred = 1,
NSWindowTabbingModeDisallowed = 2,
}

#[repr(u64)]
Expand Down

0 comments on commit f6e7580

Please sign in to comment.