Use delete key to trash Inbox or Sent messages #81
|
@ -5021,6 +5021,7 @@ class MyForm(QtGui.QMainWindow):
|
||||||
#Send item on the Inbox tab to trash
|
#Send item on the Inbox tab to trash
|
||||||
def on_action_InboxTrash(self):
|
def on_action_InboxTrash(self):
|
||||||
currentRow = self.ui.tableWidgetInbox.currentRow()
|
currentRow = self.ui.tableWidgetInbox.currentRow()
|
||||||
|
if currentRow >= 0:
|
||||||
inventoryHashToTrash = str(self.ui.tableWidgetInbox.item(currentRow,3).data(Qt.UserRole).toPyObject())
|
inventoryHashToTrash = str(self.ui.tableWidgetInbox.item(currentRow,3).data(Qt.UserRole).toPyObject())
|
||||||
t = (inventoryHashToTrash,)
|
t = (inventoryHashToTrash,)
|
||||||
sqlLock.acquire()
|
sqlLock.acquire()
|
||||||
|
@ -5036,6 +5037,7 @@ class MyForm(QtGui.QMainWindow):
|
||||||
#Send item on the Sent tab to trash
|
#Send item on the Sent tab to trash
|
||||||
def on_action_SentTrash(self):
|
def on_action_SentTrash(self):
|
||||||
currentRow = self.ui.tableWidgetSent.currentRow()
|
currentRow = self.ui.tableWidgetSent.currentRow()
|
||||||
|
if currentRow >= 0:
|
||||||
ackdataToTrash = str(self.ui.tableWidgetSent.item(currentRow,3).data(Qt.UserRole).toPyObject())
|
ackdataToTrash = str(self.ui.tableWidgetSent.item(currentRow,3).data(Qt.UserRole).toPyObject())
|
||||||
t = (ackdataToTrash,)
|
t = (ackdataToTrash,)
|
||||||
sqlLock.acquire()
|
sqlLock.acquire()
|
||||||
|
|
Reference in New Issue
Block a user