summaryrefslogtreecommitdiffstats
path: root/qt-ui/maintab.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-11 06:23:18 +0900
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-11 06:23:18 +0900
commit9ead871d6456f8f19f6f0fe2413513ef4449253d (patch)
tree9444df9adf22e8c4b6d43ba06ec63d0c5119dd03 /qt-ui/maintab.cpp
parentf41651439cb6ee653cf25b495463644902507f46 (diff)
downloadsubsurface-9ead871d6456f8f19f6f0fe2413513ef4449253d.tar.gz
Stop clicks on the globe from changing dive list selection while editing
This caused us to get royally confused when manually adding a dive and trying to set the location through the marble widget. Fixes # 229 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r--qt-ui/maintab.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp
index 6c071d911..0c0d99a35 100644
--- a/qt-ui/maintab.cpp
+++ b/qt-ui/maintab.cpp
@@ -253,6 +253,11 @@ void MainTab::clearStats()
else \
ui.field->setText(get_temperature_string(d->field, TRUE))
+bool MainTab::isEditing()
+{
+ return editMode != NONE;
+}
+
void MainTab::updateDiveInfo(int dive)
{
if (!isEnabled() && dive != -1)