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:
Eduardo Flores 2026-02-20 15:15:34 -07:00 committed by Ashley Wulber
parent c2739eed7c
commit 8cfe449315

View file

@ -2582,7 +2582,7 @@ pub fn user_force_quit(
..
},
..
} if c == "q" && _modifiers.super_key() => true,
} if c == "q" && _modifiers.meta_key() => true,
_ => false,
}
}