Disable additional buttons when overview plot is cleared

This commit is contained in:
Ludger Küperkoch 2017-04-28 16:01:31 +02:00
parent 94bf08df60
commit e5189fd3aa
2 changed files with 3 additions and 1 deletions

View File

@ -963,6 +963,8 @@ class MainWindow(QMainWindow):
def clearWaveformDataPlot(self): def clearWaveformDataPlot(self):
self.disconnectWFplotEvents() self.disconnectWFplotEvents()
self.dataPlot.getAxes().cla() self.dataPlot.getAxes().cla()
self.loadlocationaction.setEnabled(False)
self.saveProjectAction.setEnabled(False)
self.auto_pick.setEnabled(False) self.auto_pick.setEnabled(False)
self.z_action.setEnabled(False) self.z_action.setEnabled(False)
self.e_action.setEnabled(False) self.e_action.setEnabled(False)

View File

@ -1 +1 @@
3129-dirty 94bf-dirty