@xiota commented on this pull request.
sci_scroll_columns(editor->sci, amount);
return TRUE; } + else if (!event->state || (editor_prefs.scrollwheel_zoom_disable && (event->state & GDK_CONTROL_MASK)))
If I want to remove the control mask, would either of the following work for mac? ``` event->state = event->state & !GDK_CONTROL_MASK; ```
``` GdkModifierType modifiers = keybindings_get_modifiers(event->state); event->state = modifiers & !GDK_CONTROL_MASK; ```