Newly arrives messages sorting
There could be cases where newly arrives message is not added correctly. It won't necessarily go to the top, that depends on the sort.
This commit is contained in:
parent
ce31dacd95
commit
6861dbb147
|
@ -976,9 +976,14 @@ class MyForm(settingsmixin.SMainWindow):
|
|||
updateUnreadCount(folderItem)
|
||||
|
||||
def addMessageListItem(self, tableWidget, items):
|
||||
sortingEnabled = tableWidget.isSortingEnabled()
|
||||
if sortingEnabled:
|
||||
tableWidget.setSortingEnabled(False)
|
||||
tableWidget.insertRow(0)
|
||||
for i in range(len(items)):
|
||||
tableWidget.setItem(0, i, items[i])
|
||||
if sortingEnabled:
|
||||
tableWidget.setSortingEnabled(True)
|
||||
|
||||
def addMessageListItemSent(self, tableWidget, toAddress, fromAddress, subject, status, ackdata, lastactiontime):
|
||||
acct = accountClass(fromAddress)
|
||||
|
|
Loading…
Reference in New Issue
Block a user