summaryrefslogtreecommitdiffstats
path: root/src/ibushotkey.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ibushotkey.c')
-rw-r--r--src/ibushotkey.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ibushotkey.c b/src/ibushotkey.c
index 0f1b314..1d3a4b3 100644
--- a/src/ibushotkey.c
+++ b/src/ibushotkey.c
@@ -459,6 +459,8 @@ GQuark
ibus_hotkey_profile_filter_key_event (IBusHotkeyProfile *profile,
guint keyval,
guint modifiers,
+ guint prev_keyval,
+ guint prev_modifiers,
gpointer user_data)
{
IBusHotkeyProfilePrivate *priv;
@@ -469,6 +471,10 @@ ibus_hotkey_profile_filter_key_event (IBusHotkeyProfile *profile,
.modifiers = modifiers & priv->mask,
};
+ if ((modifiers & IBUS_RELEASE_MASK) && keyval != prev_keyval) {
+ return 0;
+ }
+
GQuark event = (GQuark) GPOINTER_TO_UINT (g_tree_lookup (priv->hotkeys, &hotkey));
if (event != 0) {