[geany/geany-plugins] c2dcfe: Merge pull request #975 from techee/numlock
Frank Lanitz
git-noreply at xxxxx
Sun Jul 26 07:51:16 UTC 2020
Branch: refs/heads/master
Author: Frank Lanitz <frank at frank.uvena.de>
Committer: GitHub <noreply at github.com>
Date: Sun, 26 Jul 2020 07:51:16 UTC
Commit: c2dcfe56f5419a9784d8f1e2cd6840fc65098ab6
https://github.com/geany/geany-plugins/commit/c2dcfe56f5419a9784d8f1e2cd6840fc65098ab6
Log Message:
-----------
Merge pull request #975 from techee/numlock
vimode: Correctly ignore unwanted modifiers
Modified Paths:
--------------
vimode/src/cmd-runner.c
vimode/src/excmd-prompt.c
Modified: vimode/src/cmd-runner.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -431,7 +431,7 @@ static gboolean is_cmdpart(GSList *kpl, CmdDef *cmds)
static gboolean is_printable(GSList *kpl)
{
- guint mask = GDK_MODIFIER_MASK & ~(GDK_SHIFT_MASK | GDK_LOCK_MASK);
+ guint mask = gtk_accelerator_get_default_mod_mask() & ~GDK_SHIFT_MASK;
KeyPress *kp = g_slist_nth_data(kpl, 0);
if (kp->modif & mask)
Modified: vimode/src/excmd-prompt.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -71,7 +71,7 @@ static void set_prompt_text(const gchar *val)
static gboolean on_prompt_key_press_event(GtkWidget *widget, GdkEventKey *event, gpointer dummy)
{
const gchar *text = gtk_entry_get_text(GTK_ENTRY(entry));
- guint modif_mask = GDK_MODIFIER_MASK & ~GDK_LOCK_MASK;
+ guint modif_mask = gtk_accelerator_get_default_mod_mask();
ignore_change = FALSE;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Plugins-Commits
mailing list