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
This commit is contained in:
Andrew Wu
2003-11-14 10:17:23 +00:00
committed by Bolian Yin
parent edf5fa2abb
commit 8b11b6d449

View File

@ -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) {