mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 20:43:24 +00:00
Correctly restore the column sizes in the dive list
Ordering here is important - we can't resize the columns before they are created. On the other hand this now means that we explicitly need to expand to the first dive shown. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
ace8b4f2ea
commit
1752257fbb
1 changed files with 2 additions and 1 deletions
|
@ -37,7 +37,6 @@ MainWindow* mainWindow()
|
|||
MainWindow::MainWindow() : ui(new Ui::MainWindow())
|
||||
{
|
||||
ui->setupUi(this);
|
||||
readSettings();
|
||||
setWindowIcon(QIcon(":subsurface-icon"));
|
||||
connect(ui->ListWidget, SIGNAL(currentDiveChanged(int)), this, SLOT(current_dive_changed(int)));
|
||||
ui->globeMessage->hide();
|
||||
|
@ -45,6 +44,7 @@ MainWindow::MainWindow() : ui(new Ui::MainWindow())
|
|||
ui->globeMessage->setCloseButtonVisible(false);
|
||||
ui->ProfileWidget->setFocusProxy(ui->ListWidget);
|
||||
ui->ListWidget->reload();
|
||||
readSettings();
|
||||
ui->ListWidget->setFocus();
|
||||
ui->globe->reload();
|
||||
instance = this;
|
||||
|
@ -344,6 +344,7 @@ void MainWindow::readSettings()
|
|||
ui->ListWidget->resizeColumnToContents(i);
|
||||
}
|
||||
ui->ListWidget->collapseAll();
|
||||
ui->ListWidget->expand(ui->ListWidget->model()->index(0,0));
|
||||
ui->ListWidget->scrollTo(ui->ListWidget->model()->index(0,0), QAbstractItemView::PositionAtCenter);
|
||||
|
||||
settings.endGroup();
|
||||
|
|
Loading…
Add table
Reference in a new issue