summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2019-09-01 18:12:01 -0400
committerJoseph Donofry <joedonofry@gmail.com>2020-01-23 17:07:24 -0500
commit74e2b0725d5739e225e8be82ce597ad6cdb82210 (patch)
treee3219d2edb2e08d510acd462a616a755bc72d239 /src
parentRemove third party fonts from readme (diff)
downloadnheko-74e2b0725d5739e225e8be82ce597ad6cdb82210.tar.xz
Minor tweak to one instance of QSettings not necessarily using the same settings as everything else
Diffstat (limited to 'src')
-rw-r--r--src/Utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp

index 05cb794c..e6b92160 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp
@@ -77,7 +77,7 @@ utils::setScaleFactor(float factor) float utils::scaleFactor() { - QSettings settings("nheko", "nheko"); + QSettings settings; return settings.value("settings/scale_factor", -1).toFloat(); }