Select default from address on compose screen #6

Merged
maran merged 2 commits from master into master 2012-11-29 17:32:14 +01:00
Showing only changes of commit 88d6255782 - Show all commits

View File

@ -2445,6 +2445,9 @@ class MyForm(QtGui.QMainWindow):
#Below this point, it would be good if all of the necessary global data structures were initialized. #Below this point, it would be good if all of the necessary global data structures were initialized.
self.rerenderComboBoxSendFrom() self.rerenderComboBoxSendFrom()
if(self.ui.comboBoxSendFrom.count() > 0):
self.redrawLabelFrom(self.ui.comboBoxSendFrom.currentIndex())
self.listOfOutgoingSynSenderThreads = [] #if we don't maintain this list, the threads will get garbage-collected. self.listOfOutgoingSynSenderThreads = [] #if we don't maintain this list, the threads will get garbage-collected.