diff options
author | Andrew Wu <yang.wu@sun.com> | 2003-11-14 18:17:23 +0800 |
---|---|---|
committer | Bolian Yin <byin@src.gnome.org> | 2003-11-14 18:17:23 +0800 |
commit | 8b11b6d44967267acb681b968ead847b3d0dd1b4 (patch) | |
tree | 5ac414887cd468d01ad632e24b660d0313306c50 /e-util/e-text-event-processor-emacs-like.c | |
parent | edf5fa2abb90ce328ad367299693388d71e8bb05 (diff) | |
download | gsoc2013-evolution-8b11b6d44967267acb681b968ead847b3d0dd1b4.tar.gz gsoc2013-evolution-8b11b6d44967267acb681b968ead847b3d0dd1b4.tar.zst gsoc2013-evolution-8b11b6d44967267acb681b968ead847b3d0dd1b4.zip |
Fixes 45776 enable the usage of the "alt".
2003-11-14 Andrew Wu <yang.wu@sun.com>
Fixes 45776
* gal/util/e-text-event-processor-emacs-like.c (e_text_event_processor_emacs_like_event):
enable the usage of the "alt".
svn path=/trunk/; revision=23351
Diffstat (limited to 'e-util/e-text-event-processor-emacs-like.c')
-rw-r--r-- | e-util/e-text-event-processor-emacs-like.c | 2 |
1 files changed, 2 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 9cda8f1677..c0b4875901 100644 --- a/e-util/e-text-event-processor-emacs-like.c +++ b/e-util/e-text-event-processor-emacs-like.c @@ -191,6 +191,8 @@ e_text_event_processor_emacs_like_event (ETextEventProcessor *tep, ETextEventPro command.time = event->key.time; if (key.state & GDK_SHIFT_MASK) command.action = E_TEP_SELECT; + else if (key.state & GDK_MOD1_MASK) + command.action = E_TEP_NOP; else command.action = E_TEP_MOVE; switch(key.keyval) { |