https://bugs.kde.org/show_bug.cgi?id=456364
--- Comment #13 from Halla Rempt <ha...@valdyas.org> --- The "calculation" we use is like this. It calculates the dots per inch, and then picks the scale. Looks like your monito at 175% falls in the < 220 dpi range? if (dotsPerInch < 220) { screenScale = 1; } else if (dotsPerInch < 300) { screenScale = 2; } else if (dotsPerInch < 500) { screenScale = 3; } else { screenScale = 4; } -- You are receiving this mail because: You are watching all bug changes.