Dominique Leuenberger
0cedf66b42
New stable release OBS-URL: https://build.opensuse.org/request/show/703268 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gedit-plugins?expand=0&rev=110
28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
From 7c2ce196a6bedeb903de840ca5416a06ca918b2b Mon Sep 17 00:00:00 2001
|
|
From: Peng Wu <alexepico@gmail.com>
|
|
Date: Tue, 6 Sep 2016 11:13:19 +0800
|
|
Subject: [PATCH] bracketcompletion: use key release event to work with input
|
|
method
|
|
|
|
To work with ibus pinyin input method,
|
|
switch to use key release event.
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=778737
|
|
---
|
|
plugins/bracketcompletion/bracketcompletion.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: gedit-plugins-3.32.2/plugins/bracketcompletion/bracketcompletion.py
|
|
===================================================================
|
|
--- gedit-plugins-3.32.2.orig/plugins/bracketcompletion/bracketcompletion.py 2019-01-10 04:27:52.000000000 +0100
|
|
+++ gedit-plugins-3.32.2/plugins/bracketcompletion/bracketcompletion.py 2019-05-15 23:25:53.887680380 +0200
|
|
@@ -248,7 +248,7 @@ class BracketCompletionPlugin(GObject.Ob
|
|
return False
|
|
|
|
def on_event_after(self, view, event):
|
|
- if event.type != Gdk.EventType.KEY_PRESS or \
|
|
+ if event.type != Gdk.EventType.KEY_RELEASE or \
|
|
event.state & (Gdk.ModifierType.CONTROL_MASK | Gdk.ModifierType.MOD1_MASK) or \
|
|
event.keyval not in self._bracket_keyvals:
|
|
return
|