Skip to content

Commit 88678ea

Browse files
mailchuckPeterSurda
authored andcommitted
Sent table header
Inbox/Sent table header for the last column now adjust (previously, both were "Received", now the latter is "Sent).
1 parent 5afdc05 commit 88678ea

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/bitmessageqt/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,6 +1090,7 @@ def loadSent(self, tableWidget, account, where="", what=""):
10901090

10911091
tableWidget.setSortingEnabled(False)
10921092
tableWidget.horizontalHeader().setSortIndicator(3, Qt.DescendingOrder)
1093+
tableWidget.horizontalHeaderItem(3).setText(_translate("MainWindow", "Sent", None))
10931094

10941095
# Load messages from database file
10951096
def loadMessagelist(self, tableWidget, account, folder="inbox", where="", what="", unreadOnly = False):
@@ -1120,6 +1121,7 @@ def loadMessagelist(self, tableWidget, account, folder="inbox", where="", what="
11201121
tableWidget.horizontalHeader().setSortIndicator(3, Qt.DescendingOrder)
11211122
tableWidget.setSortingEnabled(True)
11221123
tableWidget.selectRow(0)
1124+
tableWidget.horizontalHeaderItem(3).setText(_translate("MainWindow", "Received", None))
11231125

11241126
# create application indicator
11251127
def appIndicatorInit(self, app):

0 commit comments

Comments
 (0)