107 Private slot to add the server process output to the output pane. |
107 Private slot to add the server process output to the output pane. |
108 """ |
108 """ |
109 if self.__process is not None: |
109 if self.__process is not None: |
110 out = str(self.__process.readAllStandardOutput(), "utf-8") |
110 out = str(self.__process.readAllStandardOutput(), "utf-8") |
111 self.outputEdit.insertPlainText(out) |
111 self.outputEdit.insertPlainText(out) |
|
112 self.outputEdit.ensureCursorVisible() |
112 |
113 |
113 @pyqtSlot() |
114 @pyqtSlot() |
114 def __processFinished(self): |
115 def __processFinished(self): |
115 """ |
116 """ |
116 Private slot handling the finishing of the server process. |
117 Private slot handling the finishing of the server process. |