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

fix: Font size not resetting back to default properly

This commit is contained in:
WerWolv 2023-11-28 10:28:06 +01:00
parent cbf82d7476
commit eae73b3113

View File

@ -119,6 +119,9 @@ namespace hex::plugin::builtin {
bool loadFontsImpl(bool loadUnicode) {
const float defaultFontSize = ImHexApi::System::DefaultFontSize * std::round(ImHexApi::System::getGlobalScale());
// Reset used font size back to the default size
ImHexApi::System::impl::setFontSize(defaultFontSize);
// Load custom font related settings
if (ContentRegistry::Settings::read("hex.builtin.setting.font", "hex.builtin.setting.font.custom_font_enable", false).get<bool>()) {
std::fs::path fontFile = ContentRegistry::Settings::read("hex.builtin.setting.font", "hex.builtin.setting.font.font_path", "").get<std::string>();