diff --git a/src/qml/Display/Main.qml b/src/qml/Display/Main.qml index 8d52bde..25ffc1a 100644 --- a/src/qml/Display/Main.qml +++ b/src/qml/Display/Main.qml @@ -321,9 +321,10 @@ ItemPage { break; } - rootWindow.showPassiveNotification(qsTr("Need to log in again to take effect"), "short") - - appearance.setDevicePixelRatio(value) + if (appearance.devicePixelRatio !== value) { + rootWindow.showPassiveNotification(qsTr("Need to log in again to take effect"), "short") + appearance.setDevicePixelRatio(value) + } } } }