please use tupples; only use list when need to append later etc
This commit is contained in:
parent
370b6870f5
commit
0f9f404000
|
@ -576,7 +576,7 @@ class GroupchatWindow(chat.Chat):
|
|||
_('You can manage your bookmarks via Actions menu in your roster.'))
|
||||
|
||||
def on_message_textview_key_press_event(self, widget, event):
|
||||
if event.keyval not in [gtk.keysyms.ISO_Left_Tab, gtk.keysyms.Tab]:
|
||||
if event.keyval not in (gtk.keysyms.ISO_Left_Tab, gtk.keysyms.Tab):
|
||||
room_jid = self.get_active_jid()
|
||||
self.last_key_tabs[room_jid] = False
|
||||
|
||||
|
|
Loading…
Reference in New Issue