diff options
author | Danilo Cesar Lemes de Paula <danilo.eu@gmail.com> | 2014-02-07 00:14:47 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-10 08:08:20 -0800 |
commit | 31c45b8c4ceca669b36706814ec7379cacd685f0 (patch) | |
tree | dc9657228cac0e08c03a018e69f8a3a70a12818e /qt-ui/mainwindow.cpp | |
parent | 772c9fb0b14240ac6959f99052a7f78cb56c6944 (diff) | |
download | subsurface-31c45b8c4ceca669b36706814ec7379cacd685f0.tar.gz |
Enable the dive planning under a compile flag
Allow subsurface to show the dive planner in case a compile flag is given.
qmake CONFIG+=planner
Signed-off-by: Danilo Cesar Lemes de Paula <danilo.eu@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index d93de4d05..df6e13163 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -73,6 +73,10 @@ MainWindow::MainWindow() : QMainWindow(), ui.ListWidget->scrollTo(ui.ListWidget->model()->index(0,0), QAbstractItemView::PositionAtCenter); ui.divePlanner->settingsChanged(); ui.divePlannerWidget->settingsChanged(); + +#ifndef ENABLE_PLANNER + ui.menuLog->removeAction(ui.actionDivePlanner); +#endif } // this gets called after we download dives from a divecomputer |