Skip to content

Commit f6e7580

Browse files
authored
fix: update NSWindowTabbingMode enum values (#714)
Signed-off-by: Gaauwe Rombouts <[email protected]>
1 parent ef896fe commit f6e7580

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cocoa/src/appkit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,8 @@ pub enum NSWindowTitleVisibility {
250250
#[derive(Clone, Copy, Debug, PartialEq)]
251251
pub enum NSWindowTabbingMode {
252252
NSWindowTabbingModeAutomatic = 0,
253-
NSWindowTabbingModeDisallowed = 1,
254-
NSWindowTabbingModePreferred = 2,
253+
NSWindowTabbingModePreferred = 1,
254+
NSWindowTabbingModeDisallowed = 2,
255255
}
256256

257257
#[repr(u64)]

0 commit comments

Comments
 (0)