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

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: