[minor] suppress rotation warning in GUI

This commit is contained in:
2017-09-08 09:36:34 +02:00
parent 9d540fdd9b
commit 38a071ac5b
3 changed files with 9 additions and 7 deletions

View File

@@ -1461,7 +1461,7 @@ class MainWindow(QMainWindow):
check4gaps(wfdat)
check4doubled(wfdat)
# check for stations with rotated components
wfdat = check4rotated(wfdat, self.metadata)
wfdat = check4rotated(wfdat, self.metadata, verbosity=0)
# trim station components to same start value
trim_station_components(wfdat, trim_start=True, trim_end=False)
self._stime = full_range(self.get_data().getWFData())[0]