@b4n commented on this pull request.


In src/editor.c:

> @@ -288,6 +288,21 @@ void editor_snippets_init(void)
 }
 
 
+gboolean motion_notify_event(GtkWidget* widget, GdkEventMotion event, gpointer data)
+{
+	GeanyEditor *editor = data;
+
+	if (event.state & GDK_BUTTON1_MASK && event.state & GDK_MOD1_MASK)

This includes any set of modifiers that contain MOD1, is that wanted?

⬇️ Suggested change
-	if (event.state & GDK_BUTTON1_MASK && event.state & GDK_MOD1_MASK)
+	if (keybindings_get_modifiers(event.state) == (GDK_BUTTON1_MASK | GDK_MOD1_MASK))


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/pull/3899/review/2106379219@github.com>