fix: Fonts being scaled twice as big by default on macOS

This commit is contained in:
WerWolv
2025-08-13 20:24:00 +02:00
parent d07b4417d7
commit 63711f652f

View File

@@ -1212,7 +1212,7 @@ namespace hex {
}
float getDpi() {
auto dpi = ImHexApi::System::getNativeScale() * ImHexApi::System::getBackingScaleFactor() * 96.0F;
auto dpi = ImHexApi::System::getNativeScale() * 96.0F;
return dpi ? dpi : 96.0F;
}