fix(macOS): change super_key to meta_key for 'q' press
The super key was deprecated in favor of the meta key, adding this change to reflect that.
This commit is contained in:
parent
c2739eed7c
commit
8cfe449315
1 changed files with 1 additions and 1 deletions
|
|
@ -2582,7 +2582,7 @@ pub fn user_force_quit(
|
|||
..
|
||||
},
|
||||
..
|
||||
} if c == "q" && _modifiers.super_key() => true,
|
||||
} if c == "q" && _modifiers.meta_key() => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue