diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-05-26 15:17:34 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-05-26 15:18:15 -0700 |
commit | 0d58cfb6411080053e99b0caa042278c19441b9d (patch) | |
tree | 91f8e2f1d01d2f57a56379d942e02f0e4933c024 /qt-ui/profile/profilewidget2.cpp | |
parent | 0f023791f8e47bae725629954454d7c623ca3c4d (diff) | |
download | subsurface-0d58cfb6411080053e99b0caa042278c19441b9d.tar.gz |
Planner: don't try to update the MainTab dive info while in plan mode
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index f62299648..6cb258060 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -816,6 +816,11 @@ extern struct ev_select *ev_namelist; extern int evn_allocated; extern int evn_used; +bool ProfileWidget2::isPlanner() +{ + return currentState == PLAN; +} + void ProfileWidget2::contextMenuEvent(QContextMenuEvent *event) { if (currentState == ADD || currentState == PLAN) { |