diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-01-29 18:10:42 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-01-29 18:10:42 +0100 |
commit | 1d6d9e65af7b78cb9fa1b68238f1b488b085ddfd (patch) | |
tree | 5271fdd94c49ee95cbb355dc484c2337aa6168ee /src | |
parent | Get rid of some shadowing (diff) | |
download | nheko-1d6d9e65af7b78cb9fa1b68238f1b488b085ddfd.tar.xz |
Store window size on exit again
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index af8a46a9..24fc8415 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -307,7 +307,7 @@ main(int argc, char *argv[]) w.show(); QObject::connect(&app, &QApplication::aboutToQuit, &w, [&w]() { - // w.saveCurrentWindowSize(); + w.saveCurrentWindowSize(); if (http::client() != nullptr) { nhlog::net()->debug("shutting down all I/O threads & open connections"); http::client()->close(true); |