From 07beb53b37f75631ff45291d60381e74c295cb00 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Fri, 21 Jun 2019 12:12:13 +0200 Subject: [PATCH] Add space after "if" --- kitty/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/mouse.c b/kitty/mouse.c index 5ef800fdf..f6781445d 100644 --- a/kitty/mouse.c +++ b/kitty/mouse.c @@ -539,7 +539,7 @@ mouse_event(int button, int modifiers, int action) { if (in_tab_bar) { mouse_cursor_shape = HAND; handle_tab_bar_mouse(button, modifiers); - } else if(w) { + } else if (w) { handle_event(w, button, modifiers, window_idx); } else if (button == GLFW_MOUSE_BUTTON_LEFT && global_state.callback_os_window->mouse_button_pressed[button]) { // initial click, clamp it to the closest window