V0.6 #852

Merged
Atheros1 merged 399 commits from v0.6 into master 2016-05-03 01:58:38 +02:00
Showing only changes of commit b8baceb629 - Show all commits

View File

@ -587,6 +587,8 @@ class MyForm(QtGui.QMainWindow):
self.timer.start(2000) # milliseconds
QtCore.QObject.connect(self.timer, QtCore.SIGNAL("timeout()"), self.runEveryTwoSeconds)
self.recurDepth = 0
self.init_file_menu()
self.init_inbox_popup_menu()
self.init_identities_popup_menu()
@ -3489,9 +3491,15 @@ more work your computer must do to send the message. A Time-To-Live of four or f
if newLabel == oldLabel:
return
# recursion prevention
if self.recurDepth > 0:
return
self.recurDepth += 1
shared.config.set(str(item.address), 'label', newLabel)
item.updateText()
shared.writeKeysFile()
self.recurDepth -= 1
def tableWidgetInboxItemClicked(self):
folder = self.getCurrentFolder()