b4n approved this pull request.

Looks sensible

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

You could do (not sure if it's better though)
```c
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 or view it on GitHub:
https://github.com/geany/geany/pull/1636#pullrequestreview-69027367

Reply via email to