diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-01-03 13:53:52 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-03 13:56:25 -0800 |
commit | 77bc0c7c9396f82a4dccac0661adb05814909bb6 (patch) | |
tree | 300618346f1513732eae4295ad5eb3fd160017be | |
parent | 68dd039a811e956f383659a92b946b3bd1d1b083 (diff) | |
download | subsurface-77bc0c7c9396f82a4dccac0661adb05814909bb6.tar.gz |
desktop: rename Statistics tab to Summary
We now have three different things that are kinda like statistics:
- the summary tab (reasonably useful when looking at selected dives)
- the yearly statistics (Ctrl/CMD-Y)
- the full statistics (Ctrl/CMD-T)
I'd argue that's at least one too many. But I'm sure some people will disagree.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | desktop-widgets/tab-widgets/maintab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/tab-widgets/maintab.cpp b/desktop-widgets/tab-widgets/maintab.cpp index 8b1973721..ba0d2db55 100644 --- a/desktop-widgets/tab-widgets/maintab.cpp +++ b/desktop-widgets/tab-widgets/maintab.cpp @@ -66,7 +66,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), extraWidgets << new TabDiveInformation(this); ui.tabWidget->addTab(extraWidgets.last(), tr("Information")); extraWidgets << new TabDiveStatistics(this); - ui.tabWidget->addTab(extraWidgets.last(), tr("Statistics")); + ui.tabWidget->addTab(extraWidgets.last(), tr("Summary")); extraWidgets << new TabDivePhotos(this); ui.tabWidget->addTab(extraWidgets.last(), tr("Media")); extraWidgets << new TabDiveExtraInfo(this); |