diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-02-04 13:12:50 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-03-04 12:16:49 -0800 |
commit | 05b53d6204a638147727441a904f0661127142f2 (patch) | |
tree | d193df6d3175a0578d75a8a1cbbd9963eb14fe41 /desktop-widgets/maintab.cpp | |
parent | 813ccb24f9863049886946d70495934575ec735e (diff) | |
download | subsurface-05b53d6204a638147727441a904f0661127142f2.tar.gz |
Add depth and duration fields to maintab
And hide them for now. This doesn't change anything visible, it's just
putting in place the pieces for later use.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/maintab.cpp')
-rw-r--r-- | desktop-widgets/maintab.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/desktop-widgets/maintab.cpp b/desktop-widgets/maintab.cpp index 4766bf050..8b0b48363 100644 --- a/desktop-widgets/maintab.cpp +++ b/desktop-widgets/maintab.cpp @@ -120,6 +120,10 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), ui.diveEquipmentMessage->hide(); ui.diveInfoMessage->hide(); ui.diveStatisticsMessage->hide(); + ui.depth->hide(); + ui.depthLabel->hide(); + ui.duration->hide(); + ui.durationLabel->hide(); setMinimumHeight(0); setMinimumWidth(0); |