Don't log translated strings
This commit is contained in:
parent
34905b8850
commit
7ff2c0250d
1 changed files with 3 additions and 3 deletions
|
@ -147,9 +147,9 @@ void Settings::updateConfig(const QString path) {
|
||||||
loadInteger(sLowLimit, lowLimit, 5, 99);
|
loadInteger(sLowLimit, lowLimit, 5, 99);
|
||||||
loadInteger(sHighLimit, highLimit, 6, 100);
|
loadInteger(sHighLimit, highLimit, 6, 100);
|
||||||
|
|
||||||
loadString(sNotificationTitle, notificationTitle);
|
notificationTitle = mySettings->value(sNotificationTitle, notificationTitle).toString();
|
||||||
loadString(sNotificationLowText, notificationLowText);
|
notificationLowText = mySettings->value(sNotificationLowText, notificationLowText).toString();
|
||||||
loadString(sNotificationHighText, notificationHighText);
|
notificationHighText = mySettings->value(sNotificationHighText, notificationHighText).toString();
|
||||||
|
|
||||||
// Update log level
|
// Update log level
|
||||||
int oldLogLevel = logLevel;
|
int oldLogLevel = logLevel;
|
||||||
|
|
Loading…
Reference in a new issue