diff options
| author | Salanto <62221668+Salanto@users.noreply.github.com> | 2024-07-12 13:24:45 +0200 |
|---|---|---|
| committer | Salanto <62221668+Salanto@users.noreply.github.com> | 2024-07-12 13:24:45 +0200 |
| commit | 712269b4503989736b8b9b64eeeb69cab938b7f8 (patch) | |
| tree | f0d2bb44e58b434123b1fb094ad47a28e9492f1c | |
| parent | c6e3a38131c02a9862b45340a6752a08c23550f8 (diff) | |
Set default to enabled
| -rw-r--r-- | src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.cpp b/src/options.cpp index 0b963d60..fbcf01e2 100644 --- a/src/options.cpp +++ b/src/options.cpp @@ -781,7 +781,7 @@ std::optional<QPoint> Options::windowPosition(QString widget) bool Options::restoreWindowPositionEnabled() const { - return config.value("windows/restore", false).toBool(); + return config.value("windows/restore", true).toBool(); } void Options::setRestoreWindowPositionEnabled(bool state) |
