diff options
author | Saturn&Eric <[email protected]> | 2021-07-12 09:23:37 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-12 09:23:37 +0000 |
commit | 1ccc36606b9e4238ea24f36756c5ab3ad43453fe (patch) | |
tree | 72043033991b643a2cce437f22497a961d73a745 /src/ui/widgets/EditorPage.cpp | |
parent | Update Documents; (diff) | |
parent | Project structure adjustment; (diff) | |
download | GpgFrontend-1ccc36606b9e4238ea24f36756c5ab3ad43453fe.tar.gz GpgFrontend-1ccc36606b9e4238ea24f36756c5ab3ad43453fe.zip |
Merge pull request #10 from saturneric/developv1.1.3
Develop Version 1.1.3
Diffstat (limited to 'src/ui/widgets/EditorPage.cpp')
-rw-r--r-- | src/ui/widgets/EditorPage.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/widgets/EditorPage.cpp b/src/ui/widgets/EditorPage.cpp index 8a51b721..05d5cbea 100644 --- a/src/ui/widgets/EditorPage.cpp +++ b/src/ui/widgets/EditorPage.cpp @@ -42,6 +42,9 @@ EditorPage::EditorPage(QString filePath, QWidget *parent) : QWidget(parent), setAttribute(Qt::WA_DeleteOnClose); textPage->setFocus(); + // Front in same width + this->setFont({"Courier"}); + connect(textPage, SIGNAL(textChanged()), this, SLOT(formatGpgHeader())); } |