Merge branch 'develop' of 134.147.164.251:/data/git/pylot into develop

This commit is contained in:
Sebastian Wehling-Benatelli 2015-07-10 09:23:05 +02:00
commit ae563454af

View File

@ -469,7 +469,9 @@ class MainWindow(QMainWindow):
self.getPlotWidget().plotWFData(wfdata=wfst, title=title) self.getPlotWidget().plotWFData(wfdata=wfst, title=title)
self.draw() self.draw()
pos = self.getPlotWidget().getPlotDict().keys() pos = self.getPlotWidget().getPlotDict().keys()
labels = [int(act) for act in pos] labels = []
for i in range(0, len(wfst)):
labels.append(wfst[i].stats.station)
self.getPlotWidget().setYTickLabels(pos, labels) self.getPlotWidget().setYTickLabels(pos, labels)
def plotZ(self): def plotZ(self):