@b4n approved this pull request.

Looks sensible


In src/keybindings.c:

>  		mods |= GEANY_PRIMARY_MOD_MASK;
+		mods &= ~GDK_MOD2_MASK;

You could do (not sure if it's better though)

mods = mods ^ GDK_MOD2_MASK | GEANY_PRIMARY_MOD_MASK;


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.