1463 self.input.setEchoMode(QLineEdit.Normal) |
1463 self.input.setEchoMode(QLineEdit.Normal) |
1464 |
1464 |
1465 @pyqtSlot() |
1465 @pyqtSlot() |
1466 def on_sendButton_clicked(self): |
1466 def on_sendButton_clicked(self): |
1467 """ |
1467 """ |
1468 Private slot to send the input to the merurial process. |
1468 Private slot to send the input to the mercurial process. |
1469 """ |
1469 """ |
1470 input = self.input.text() |
1470 input = self.input.text() |
1471 input += os.linesep |
1471 input += os.linesep |
1472 |
1472 |
1473 if self.passwordCheckBox.isChecked(): |
1473 if self.passwordCheckBox.isChecked(): |