diff options
author | Saturneric <[email protected]> | 2023-02-07 10:26:27 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-02-07 10:26:27 +0000 |
commit | ece58986669000baf696edafccb0197a54c0b7c1 (patch) | |
tree | c3b0f91e01603be6387f624ef01be9b05774f4b1 /src/ui/widgets/TextEdit.cpp | |
parent | fix: solve an issue in version checking (diff) | |
download | GpgFrontend-ece58986669000baf696edafccb0197a54c0b7c1.tar.gz GpgFrontend-ece58986669000baf696edafccb0197a54c0b7c1.zip |
fix: solve bugs in subkey generation
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 5d10ece9..344f422e 100644 --- a/src/ui/widgets/TextEdit.cpp +++ b/src/ui/widgets/TextEdit.cpp @@ -632,7 +632,7 @@ void TextEdit::slot_save_status_to_cache_for_revovery() { auto raw_text = document->toRawText().toStdString(); SPDLOG_DEBUG("unsaved page index: {}, tab title: {} tab content: {}", i, - tab_title, raw_text); + tab_title, raw_text.size()); unsaved_pages.push_back({i, tab_title, raw_text}); } } |