summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorMikaƫl Capelle <capelle.mikael@gmail.com>2021-03-03 18:52:28 +0100
committerGitHub <noreply@github.com>2021-03-03 18:52:28 +0100
commitf298ea0ae34c05a23c21974d2d762cf843cd0e58 (patch)
treeda62a42a354c98393bc8097d1a5332bf08e9e0b4 /src/mainwindow.cpp
parent32088b47f1fcad3b1a4dd298156957ddf121daeb (diff)
parentc72326ee4bbb6511d5088b1e421fd7448f20c80d (diff)
Merge pull request #1443 from Holt59/fix-savegame-name
Display savegame name and filepath in saves tab.
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 64ed6781..bc9a3ce6 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -351,6 +351,7 @@ MainWindow::MainWindow(Settings &settings
}
settings.geometry().restoreState(ui->downloadView->header());
+ settings.geometry().restoreState(ui->savegameList->header());
ui->splitter->setStretchFactor(0, 3);
ui->splitter->setStretchFactor(1, 2);
@@ -2005,6 +2006,7 @@ void MainWindow::storeSettings()
s.geometry().saveState(ui->espList->header());
s.geometry().saveState(ui->downloadView->header());
+ s.geometry().saveState(ui->savegameList->header());
s.widgets().saveIndex(ui->executablesListBox);
s.widgets().saveIndex(ui->tabWidget);