diff options
author | saturneric <[email protected]> | 2024-07-29 19:29:56 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-29 19:29:56 +0000 |
commit | fa90ec4b5315b9e70a44a9625c143ce253f0e885 (patch) | |
tree | 8ffa82e33522de03974d6d0289aa831b4fd6ebdf /src/ui/widgets/PlainTextEditorPage.cpp | |
parent | fix: correct urls at appdata.xml (diff) | |
parent | Merge branch 'develop' of github.com:saturneric/GpgFrontend into develop (diff) | |
download | GpgFrontend-fa90ec4b5315b9e70a44a9625c143ce253f0e885.tar.gz GpgFrontend-fa90ec4b5315b9e70a44a9625c143ce253f0e885.zip |
Merge branch 'develop'
Diffstat (limited to 'src/ui/widgets/PlainTextEditorPage.cpp')
-rw-r--r-- | src/ui/widgets/PlainTextEditorPage.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ui/widgets/PlainTextEditorPage.cpp b/src/ui/widgets/PlainTextEditorPage.cpp index 874bbf3b..57910f9d 100644 --- a/src/ui/widgets/PlainTextEditorPage.cpp +++ b/src/ui/widgets/PlainTextEditorPage.cpp @@ -164,7 +164,7 @@ void PlainTextEditorPage::ReadFile() { [=]() { emit read_task->SignalTaskShouldEnd(0); }); connect(read_task, &FileReadTask::SignalFileBytesReadEnd, this, [=]() { // set the UI - GF_UI_LOG_DEBUG("signal file bytes read end rised"); + qCDebug(ui, "signal file bytes read end rised"); this->read_done_ = true; text_page->setEnabled(true); text_page->document()->setModified(false); @@ -186,8 +186,6 @@ auto BinaryToString(const QByteArray &source) -> QString { } void PlainTextEditorPage::slot_insert_text(QByteArray bytes_data) { - GF_UI_LOG_TRACE("inserting data read to editor, data size: {}", - bytes_data.size()); read_bytes_ += bytes_data.size(); // insert the text to the text page |