--- a/UI/EmailDialog.py Sat Oct 19 12:28:12 2013 +0200 +++ b/UI/EmailDialog.py Sat Oct 19 13:03:39 2013 +0200 @@ -389,7 +389,7 @@ @param txt changed text (string) """ self.sendButton.setEnabled( - self.subject.text() != "" and \ + self.subject.text() != "" and self.message.toPlainText() != "") def on_message_textChanged(self): @@ -397,5 +397,5 @@ Private slot to handle the textChanged signal of the message edit. """ self.sendButton.setEnabled( - self.subject.text() != "" and \ + self.subject.text() != "" and self.message.toPlainText() != "")