diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-05-24 21:21:16 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-25 08:18:01 -0700 |
commit | bf7d61e74e4ecfc0d0c889cca116ee1329cfcece (patch) | |
tree | d710b01229df2e3be5fdc07324525cfd298baf3f /qt-ui/globe.cpp | |
parent | 5ca3c11e60d4537994b8dc4168a16d1a4885af46 (diff) | |
download | subsurface-bf7d61e74e4ecfc0d0c889cca116ee1329cfcece.tar.gz |
Don't show the compass
North is always up anyway. At least that's the way we've done it so far.
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/globe.cpp')
-rw-r--r-- | qt-ui/globe.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/globe.cpp b/qt-ui/globe.cpp index 79d7cbee4..525a802c9 100644 --- a/qt-ui/globe.cpp +++ b/qt-ui/globe.cpp @@ -34,6 +34,7 @@ GlobeGPS::GlobeGPS(QWidget* parent) : MarbleWidget(parent), loadedDives(0) setShowGrid(false); setShowOverviewMap(false); setShowScaleBar(true); + setShowCompass(false); Q_FOREACH(AbstractFloatItem * floatItem, floatItems()) { if (floatItem && floatItem->nameId() == "compass") { |