Compare commits

...

3 Commits

3 changed files with 6 additions and 8 deletions

View File

@ -254,7 +254,7 @@ class MainWindow(QMainWindow):
self._inputs.export2File(infile) self._inputs.export2File(infile)
self.infile = infile self.infile = infile
def setupUi(self, use_logwidget=True): def setupUi(self, use_logwidget=False):
try: try:
self.startTime = min( self.startTime = min(
[tr.stats.starttime for tr in self.data.wfdata]) [tr.stats.starttime for tr in self.data.wfdata])
@ -734,11 +734,9 @@ class MainWindow(QMainWindow):
if use_logwidget: if use_logwidget:
self.logwidget = LogWidget(parent=None) self.logwidget = LogWidget(parent=None)
self.logwidget.show() self.logwidget.show()
self.stdout = self.logwidget.stdout
self.stderr = self.logwidget.stderr
sys.stdout = self.stdout sys.stdout = self.logwidget.stdout
sys.stderr = self.stderr sys.stderr = self.logwidget.stderr
self.setCentralWidget(_widget) self.setCentralWidget(_widget)

View File

@ -24,10 +24,10 @@ It is highly recommended to use Anaconda for a simple creation of a Python insta
Afterwards run (from the PyLoT main directory where the files *requirements.txt* and *pylot.yml* are located) Afterwards run (from the PyLoT main directory where the files *requirements.txt* and *pylot.yml* are located)
conda create --name pylot_38 --file requirements.txt conda env create -f pylot.yml
or or
conda env create -f pylot.yml conda create --name pylot_38 --file requirements.txt
to create a new Anaconda environment called "pylot_38". to create a new Anaconda environment called "pylot_38".

View File

@ -120,7 +120,7 @@ class LogWidget(QtWidgets.QWidget):
self.layout.addWidget(self.tabs) self.layout.addWidget(self.tabs)
def active_error(self): def active_error(self):
if self.current_active_error == False: if not self.current_active_error:
self.current_active_error = True self.current_active_error = True
self.show() self.show()
self.activateWindow() self.activateWindow()