aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSuresh Chandrasekharan <suresh.chandrasekharan@sun.com>2003-12-02 01:50:20 +0800
committerSuresh Chandrasekharan <kcsuresh@src.gnome.org>2003-12-02 01:50:20 +0800
commit98093d4c1467ce6184c0c6c27b47a261ad99c318 (patch)
tree6e6d5e8d33159138d8479ac18bf608d40bce3f7f
parente71fb79458507f352ce121ab8a8e044324e016ef (diff)
downloadgsoc2013-evolution-98093d4c1467ce6184c0c6c27b47a261ad99c318.tar
gsoc2013-evolution-98093d4c1467ce6184c0c6c27b47a261ad99c318.tar.gz
gsoc2013-evolution-98093d4c1467ce6184c0c6c27b47a261ad99c318.tar.bz2
gsoc2013-evolution-98093d4c1467ce6184c0c6c27b47a261ad99c318.tar.lz
gsoc2013-evolution-98093d4c1467ce6184c0c6c27b47a261ad99c318.tar.xz
gsoc2013-evolution-98093d4c1467ce6184c0c6c27b47a261ad99c318.tar.zst
gsoc2013-evolution-98093d4c1467ce6184c0c6c27b47a261ad99c318.zip
Bug Id #51527 "gal widgets produces backspace for Ctrl-space for japanese
2003-11-30 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com> Bug Id #51527 "gal widgets produces backspace for Ctrl-space for japanese input" * gal/util/e-text-event-processor-emacs-like.c: (e_text_event_processor_emacs_like_event) If GDK_CONTROL_MASK set, disable the command action. svn path=/trunk/; revision=23529
-rw-r--r--e-util/e-text-event-processor-emacs-like.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/e-util/e-text-event-processor-emacs-like.c b/e-util/e-text-event-processor-emacs-like.c
index c0b4875901..478dc2d68b 100644
--- a/e-util/e-text-event-processor-emacs-like.c
+++ b/e-util/e-text-event-processor-emacs-like.c
@@ -429,6 +429,10 @@ e_text_event_processor_emacs_like_event (ETextEventProcessor *tep, ETextEventPro
command.string = control_keys[(int) (key.keyval - 'a')].string;
}
+ if (key.keyval == ' ') {
+ command.action = E_TEP_NOP;
+ }
+
if (key.keyval == 'x') {
command.action = E_TEP_COPY;
command.position = E_TEP_SELECTION;