Merge branch 'fix-clang-warning' of https://github.com/Luflosi/kitty

This commit is contained in:
Kovid Goyal 2021-10-30 20:30:27 +05:30
commit 80ab60f1b6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -455,7 +455,7 @@ void* _glfwLoadLocalVulkanLoaderNS(void)
static bool
is_modified_tab(NSEvent *event, NSEventModifierFlags modifierFlags) {
switch (modifierFlags) {
switch ((NSUInteger)modifierFlags) {
// No need to handle shift+tab, [shift]+option+tab
case NSEventModifierFlagShift:
case NSEventModifierFlagOption: