From 1752257fbb527fb09fa34e83be4a59caddc95cd2 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 21 May 2013 18:29:23 -0700 Subject: 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 --- qt-ui/mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'qt-ui') diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 30629ce95..6ed810adb 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -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(); -- cgit v1.2.3-70-g09d2