1
0
mirror of synced 2025-01-18 09:04:52 +01:00

fix: Disable auto scaling on the web

This commit is contained in:
WerWolv 2023-10-06 12:57:29 +02:00
parent 4db10f1c8b
commit 9e5e3e94a3

View File

@ -358,6 +358,8 @@ namespace hex::init {
#if defined(OS_MACOS)
meanScale /= getBackingScaleFactor();
#elif defined(OS_WEB)
meanScale = 1.0F;
#endif
ImHexApi::System::impl::setGlobalScale(meanScale);