Skip to content
Snippets Groups Projects
Commit 0e221877 authored by benjamin.jakimow@geo.hu-berlin.de's avatar benjamin.jakimow@geo.hu-berlin.de
Browse files

optical refactoring

widget "under construction" will not be shown to the user
parent c56339b1
No related branches found
No related tags found
No related merge requests found
......@@ -658,6 +658,12 @@ class ProfileViewDockUI(TsvDockWidgetBase, load('profileviewdock.ui')):
super(ProfileViewDockUI, self).__init__(parent)
self.setupUi(self)
from timeseriesviewer import OPENGL_AVAILABLE, SETTINGS
#TBD.
self.line.setVisible(False)
self.listWidget.setVisible(False)
self.stackedWidget.setCurrentWidget(self.page2D)
if OPENGL_AVAILABLE:
l = self.page3D.layout()
l.removeWidget(self.labelDummy3D)
......@@ -667,7 +673,6 @@ class ProfileViewDockUI(TsvDockWidgetBase, load('profileviewdock.ui')):
else:
self.plotWidget3D = None
#pi = self.plotWidget2D.plotItem
#ax = DateAxis(orientation='bottom', showValues=True)
#pi.layout.addItem(ax, 3,2)
......@@ -948,7 +953,7 @@ class SpectralTemporalVisualization(QObject):
def testPixelLoader():
def examplePixelLoader():
# prepare QGIS environment
if sys.platform == 'darwin':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment