diff options
author | saturneric <[email protected]> | 2023-10-17 18:06:44 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-17 18:06:44 +0000 |
commit | 9eb339dd2b463cc86bbeed73e349afe0b3ad7a23 (patch) | |
tree | 7383cb1c44828e33d05d32f07dff595c8e27d380 /src/ui/widgets/TextEdit.cpp | |
parent | fix: improve module (diff) | |
download | GpgFrontend-9eb339dd2b463cc86bbeed73e349afe0b3ad7a23.tar.gz GpgFrontend-9eb339dd2b463cc86bbeed73e349afe0b3ad7a23.zip |
refactor: use piml tech to rewrite GlobalSettingsStation
Diffstat (limited to '')
-rw-r--r-- | src/ui/widgets/TextEdit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/widgets/TextEdit.cpp b/src/ui/widgets/TextEdit.cpp index 56097b1a..f44c076c 100644 --- a/src/ui/widgets/TextEdit.cpp +++ b/src/ui/widgets/TextEdit.cpp @@ -632,7 +632,7 @@ void TextEdit::slot_file_page_path_changed(const QString& path) const { void TextEdit::slot_save_status_to_cache_for_revovery() { if (this->text_page_data_modified_count_++ % 8 != 0) return; - auto& settings = GlobalSettingStation::GetInstance().GetUISettings(); + auto& settings = GlobalSettingStation::GetInstance().GetMainSettings(); bool restore_text_editor_page = false; try { restore_text_editor_page = |