1
0
mirror of synced 2024-11-28 09:30:51 +01:00

fix: Unifont being blurry again

This commit is contained in:
WerWolv 2024-06-07 22:50:47 +02:00
parent ffe3dae7b2
commit b80a6152b3

View File

@ -291,8 +291,8 @@ namespace hex::plugin::builtin {
auto size = fontSize; auto size = fontSize;
if (font.defaultSize.has_value()) if (font.defaultSize.has_value())
size = font.defaultSize.value() * std::floor(ImHexApi::Fonts::getFontSize() / ImHexApi::Fonts::DefaultFontSize); size = font.defaultSize.value() * std::floor(ImHexApi::Fonts::getFontSize() / ImHexApi::Fonts::DefaultFontSize);
else
size = std::max(1.0F, std::floor(size / ImHexApi::Fonts::DefaultFontSize)) * ImHexApi::Fonts::DefaultFontSize; size = std::max(1.0F, std::floor(size / ImHexApi::Fonts::DefaultFontSize)) * ImHexApi::Fonts::DefaultFontSize;
cfg.SizePixels = size; cfg.SizePixels = size;