Fix keypress in chan and subscription messagelists

Fixes #65
This commit is contained in:
mailchuck 2015-10-22 23:16:44 +02:00
parent 6ba8b553d2
commit 71553ae188
No known key found for this signature in database
GPG Key ID: B6311FA753FBF089

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):