Fix keypress in chan and subscription messagelists

Fixes #65
This commit is contained in:
mailchuck 2015-10-22 23:16:44 +02:00 committed by Peter Surda
parent ab113745bd
commit 55b69f2e8b
1 changed files with 1 additions and 1 deletions

View File

@ -1414,7 +1414,7 @@ class MyForm(QtGui.QMainWindow):
def tableWidgetInboxKeyPressEvent(self, event):
if event.key() == QtCore.Qt.Key_Delete:
self.on_action_InboxTrash()
return QtGui.QTableWidget.keyPressEvent(self.ui.tableWidgetInbox, event)
return QtGui.QTableWidget.keyPressEvent(self.getCurrentMessagelist(), event)
# menu button 'manage keys'
def click_actionManageKeys(self):