1
0
mirror of synced 2024-11-24 15:50:16 +01:00

fix: Still properly divide scaling by 2.0 on macOS

This commit is contained in:
WerWolv 2023-02-01 23:47:22 +01:00
parent fd259dcde3
commit 941c7ee61d

View File

@ -205,7 +205,7 @@ namespace hex::init {
meanScale = 1.0F;
#if defined(OS_MACOS)
meanScale = std::max(meanScale, 1.0F);
meanScale = std::max(meanScale / 2.0F, 1.0F);
#endif
ImHexApi::System::impl::setGlobalScale(meanScale);