From ed3e2f65f8e57af7fbb0ef20a81f29b7e2448b51 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 25 May 2025 23:32:43 +0200 Subject: [PATCH] impr: Set default font size to 12pt --- plugins/fonts/include/font_settings.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/fonts/include/font_settings.hpp b/plugins/fonts/include/font_settings.hpp index 09e141044..0b0610de4 100644 --- a/plugins/fonts/include/font_settings.hpp +++ b/plugins/fonts/include/font_settings.hpp @@ -47,7 +47,7 @@ namespace hex::fonts { class FontSelector : public ContentRegistry::Settings::Widgets::Widget { public: - FontSelector() : m_fontSize(ImHexApi::Fonts::pointsToPixels(10), 2, 100), m_antiAliased(), m_bold(false), m_italic(false) { } + FontSelector() : m_fontSize(ImHexApi::Fonts::pointsToPixels(12), 2, 100), m_bold(false), m_italic(false) { } bool draw(const std::string &name) override;