diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-06-10 12:10:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-10 15:03:12 -0700 |
commit | ec8ba5f830efc01f2db627e82e34c353c0dd13f7 (patch) | |
tree | ea2af1d916d06a3430766cd36d533d630a9a2754 /qt-ui | |
parent | b0fc00694d93f0fa7883fedc7e5418febbf3723b (diff) | |
download | subsurface-ec8ba5f830efc01f2db627e82e34c353c0dd13f7.tar.gz |
Dive site management: remove the profile view
While this isn't what I really want (I wanted pictures of the dive site
instead of the profile), at least this makes it clear that we aren't
editing a dive but instead are looking at a site.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index ac7981019..26c09fb49 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -113,7 +113,7 @@ MainWindow::MainWindow() : QMainWindow(), registerApplicationState("EditDive", mainTab, profileContainer, diveListView, globeGps ); registerApplicationState("PlanDive", plannerWidget, profileContainer, plannerSettings, plannerDetails ); registerApplicationState("EditPlannedDive", plannerWidget, profileContainer, diveListView, globeGps ); - registerApplicationState("EditDiveSite",locationInformation, profileContainer, diveListView, globeGps ); + registerApplicationState("EditDiveSite",locationInformation, globeGps, diveListView, NULL ); setApplicationState("Default"); |