Setting 12pt as base font size for MacOS (see issue #5282)

This commit is contained in:
Hombre57
2019-04-14 11:10:01 +02:00
parent d01d99481d
commit ace5a01136
2 changed files with 6 additions and 4 deletions

View File

@@ -42,9 +42,11 @@ public:
#ifdef __APPLE__
static constexpr double baseDPI = 72.;
static constexpr double baseHiDPI = 144.;
static constexpr int baseFontSize = 12;
#else
static constexpr double baseDPI = 96.;
static constexpr double baseHiDPI = 192.;
static constexpr int baseFontSize = 9;
#endif
static void init(Gtk::Window *window);