cleanup font size

This commit is contained in:
brunoherbelin
2020-05-11 13:52:02 +02:00
parent 91020f5180
commit 1e715267da
3 changed files with 6 additions and 5 deletions

View File

@@ -705,8 +705,8 @@ void ImGuiToolkit::SetFont(ImGuiToolkit::font_style style, const std::string &tt
ImFontConfig font_config;
fontname.copy(font_config.Name, 40);
font_config.FontDataOwnedByAtlas = false; // data will be copied in font atlas
font_config.OversampleH = 7;
font_config.OversampleV = 3;
font_config.OversampleH = 5;
font_config.OversampleV = 5;
// read font in Resource manager
size_t data_size = 0;