CTRL+i in private message now works. Fixes #4066

This commit is contained in:
Yann Leboulanger 2008-08-15 09:35:44 +00:00
parent b58dfd6a59
commit 4e320ed36f
1 changed files with 2 additions and 2 deletions

View File

@ -320,8 +320,8 @@ class MessageWindow(object):
elif control.type_id == message_control.TYPE_CHAT and \ elif control.type_id == message_control.TYPE_CHAT and \
keyval == gtk.keysyms.g: # CTRL + g keyval == gtk.keysyms.g: # CTRL + g
control._on_convert_to_gc_menuitem_activate(None) control._on_convert_to_gc_menuitem_activate(None)
elif control.type_id == message_control.TYPE_CHAT and \ elif control.type_id in (message_control.TYPE_CHAT,
keyval == gtk.keysyms.i: # CTRL + i message_control.TYPE_PM) and keyval == gtk.keysyms.i: # CTRL + i
control._on_contact_information_menuitem_activate(None) control._on_contact_information_menuitem_activate(None)
elif keyval == gtk.keysyms.l or keyval == gtk.keysyms.L: # CTRL + l|L elif keyval == gtk.keysyms.l or keyval == gtk.keysyms.L: # CTRL + l|L
control.conv_textview.clear() control.conv_textview.clear()