[fixes #210] missing paranthesis in function call

This commit is contained in:
Marcel Paffrath 2017-06-20 09:54:23 +02:00
parent 1b17842f63
commit 300ff9215b
2 changed files with 2 additions and 2 deletions

View File

@ -650,7 +650,7 @@ class MainWindow(QMainWindow):
data[type] += Data(self, evtdata=fname) data[type] += Data(self, evtdata=fname)
if not loc: if not loc:
self.updatePicks(type=type) self.updatePicks(type=type)
if self.get_current_event.picks: if self.get_current_event().picks:
self.plotWaveformDataThread() self.plotWaveformDataThread()
self.drawPicks(picktype=type) self.drawPicks(picktype=type)
self.draw() self.draw()

View File

@ -1 +1 @@
0717-dirty 1b17-dirty