diff options
author | Saturneric <[email protected]> | 2022-07-22 18:54:52 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-07-22 18:56:08 +0000 |
commit | ff73042072c1937c8ee20cabab3f16cf38d588b1 (patch) | |
tree | f269b6178a5318cbf1c7945bbcd6d7a0736d104f /src/ui/main_window/GeneralMainWindow.cpp | |
parent | refactor(ui): adjust file structure (diff) | |
download | GpgFrontend-ff73042072c1937c8ee20cabab3f16cf38d588b1.tar.gz GpgFrontend-ff73042072c1937c8ee20cabab3f16cf38d588b1.zip |
fix(ui): fix signer picker and other issues
1. signer picker can cancel its operation now
2. fix window title of "Export As Key Package"
Diffstat (limited to '')
-rw-r--r-- | src/ui/main_window/GeneralMainWindow.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/main_window/GeneralMainWindow.cpp b/src/ui/main_window/GeneralMainWindow.cpp index d7d93c3d..42e53ac3 100644 --- a/src/ui/main_window/GeneralMainWindow.cpp +++ b/src/ui/main_window/GeneralMainWindow.cpp @@ -65,16 +65,16 @@ void GpgFrontend::UI::GeneralMainWindow::slot_restore_settings() noexcept { int x = general_windows_state.Check("window_pos").Check("x", 100), y = general_windows_state.Check("window_pos").Check("y", 100); - auto pos = QPoint(x, y); + this->move({x, y}); + pos_ = {x, y}; int width = general_windows_state.Check("window_size").Check("width", 800), height = general_windows_state.Check("window_size").Check("height", 450); - auto size = QSize(width, height); - this->resize(size); - this->move(pos); + this->resize({width, height}); + size_ = {width, height}; } int width = general_windows_state.Check("icon_size").Check("width", 24), @@ -109,8 +109,8 @@ void GpgFrontend::UI::GeneralMainWindow::slot_save_settings() noexcept { general_windows_state["window_pos"]["x"] = pos().x(); general_windows_state["window_pos"]["y"] = pos().y(); - general_windows_state["window_size"]["width"] = size().width(); - general_windows_state["window_size"]["height"] = size().height(); + general_windows_state["window_size"]["width"] = size_.width(); + general_windows_state["window_size"]["height"] = size_.height(); general_windows_state["window_save"] = true; // icon size |