mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Move extra info tab in main window to the very right side again
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
02e768a61b
commit
bea1217f7b
1 changed files with 2 additions and 2 deletions
|
@ -45,14 +45,14 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
|
|||
{
|
||||
ui.setupUi(this);
|
||||
|
||||
extraWidgets << new TabDiveExtraInfo();
|
||||
ui.tabWidget->addTab(extraWidgets.last(), tr("Extra Info"));
|
||||
extraWidgets << new TabDiveInformation();
|
||||
ui.tabWidget->addTab(extraWidgets.last(), tr("Information"));
|
||||
extraWidgets << new TabDiveStatistics();
|
||||
ui.tabWidget->addTab(extraWidgets.last(), tr("Statistics"));
|
||||
extraWidgets << new TabDivePhotos();
|
||||
ui.tabWidget->addTab(extraWidgets.last(), tr("Photos"));
|
||||
extraWidgets << new TabDiveExtraInfo();
|
||||
ui.tabWidget->addTab(extraWidgets.last(), tr("Extra Info"));
|
||||
|
||||
ui.dateEdit->setDisplayFormat(prefs.date_format);
|
||||
|
||||
|
|
Loading…
Reference in a new issue