Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove timeline from user interface until feature is complete #262

Merged
merged 1 commit into from
Nov 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions uwsift/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,8 +746,8 @@ def start_wrapper(timer, event):
self._init_metadata_background_collection(search_paths)

# set up timeline
LOG.info("potential tracks already in database: {}".format(repr(doc.potential_tracks())))
self._init_timeline(doc, self.workspace)
# LOG.info("potential tracks already in database: {}".format(repr(doc.potential_tracks())))
# self._init_timeline(doc, self.workspace)

# FIXME: make sure sync of metadata signals sync of document potentials and track display

Expand Down Expand Up @@ -850,7 +850,10 @@ def _init_map_widget(self):
def _init_arrange_panes(self):
self.tabifyDockWidget(self.ui.layersPane, self.ui.areaProbePane)
self.tabifyDockWidget(self.ui.layerDetailsPane, self.ui.rgbConfigPane)
self.tabifyDockWidget(self.ui.layerDetailsPane, self.ui.timelinePane)
# self.tabifyDockWidget(self.ui.layerDetailsPane, self.ui.timelinePane)
self.layout().removeWidget(self.ui.timelinePane)
self.ui.timelinePane.deleteLater()
self.ui.timelinePane = None
# self.tabifyDockWidget(self.ui.rgbConfigPane, self.ui.layerDetailsPane)
# Make the layer list and layer details shown
self.ui.layersPane.raise_()
Expand Down