|
|
|
@ -1979,6 +1979,7 @@ class MyForm(settingsmixin.SMainWindow):
|
|
|
|
|
os._exit(0)
|
|
|
|
|
|
|
|
|
|
def rerenderInboxFromLabels(self):
|
|
|
|
|
return
|
|
|
|
|
for i in range(self.ui.tableWidgetInbox.rowCount()):
|
|
|
|
|
addressToLookup = self.ui.tableWidgetInbox.item(
|
|
|
|
|
i, 1).data(Qt.UserRole)
|
|
|
|
@ -2019,6 +2020,7 @@ class MyForm(settingsmixin.SMainWindow):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def rerenderInboxToLabels(self):
|
|
|
|
|
return
|
|
|
|
|
for i in range(self.ui.tableWidgetInbox.rowCount()):
|
|
|
|
|
toAddress = self.ui.tableWidgetInbox.item(
|
|
|
|
|
i, 0).data(Qt.UserRole)
|
|
|
|
@ -2042,6 +2044,7 @@ class MyForm(settingsmixin.SMainWindow):
|
|
|
|
|
i, 0).setTextColor(QApplication.palette().text().color())
|
|
|
|
|
|
|
|
|
|
def rerenderSentFromLabels(self):
|
|
|
|
|
return
|
|
|
|
|
for i in range(self.ui.tableWidgetInbox.rowCount()):
|
|
|
|
|
fromAddress = self.ui.tableWidgetInbox.item(
|
|
|
|
|
i, 1).data(Qt.UserRole)
|
|
|
|
@ -2056,6 +2059,7 @@ class MyForm(settingsmixin.SMainWindow):
|
|
|
|
|
i, 1).setIcon(avatarize(fromAddress))
|
|
|
|
|
|
|
|
|
|
def rerenderSentToLabels(self):
|
|
|
|
|
return
|
|
|
|
|
for i in range(self.ui.tableWidgetInbox.rowCount()):
|
|
|
|
|
addressToLookup = self.ui.tableWidgetInbox.item(
|
|
|
|
|
i, 0).data(Qt.UserRole)
|
|
|
|
|