mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
Fix default font problem
This commit is contained in:
parent
83777b6482
commit
e759edc216
1 changed files with 2 additions and 1 deletions
|
@ -66,7 +66,8 @@ reader::reader(QWidget *parent) :
|
||||||
// Font
|
// Font
|
||||||
string_checkconfig(".config/04-book/font");
|
string_checkconfig(".config/04-book/font");
|
||||||
if(checkconfig_str_val == "") {
|
if(checkconfig_str_val == "") {
|
||||||
;
|
ui->fontChooser->setCurrentText(checkconfig_str_val);
|
||||||
|
ui->text->setFont(QFont("Inter"));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if(checkconfig_str_val == "Crimson Pro") {
|
if(checkconfig_str_val == "Crimson Pro") {
|
||||||
|
|
Loading…
Reference in a new issue