From f9671f5b6e354c977c09a300f8c71fdaaea14308 Mon Sep 17 00:00:00 2001 From: "U-olece-PC\\olece" Date: Wed, 26 Aug 2015 14:31:50 +0200 Subject: [PATCH] Added true monospace font for Windows. --- src/files.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/files.h b/src/files.h index a20069d..7b390a1 100644 --- a/src/files.h +++ b/src/files.h @@ -10,8 +10,12 @@ const std::string configjson = #ifdef __APPLE__ " \"font\": \"Menlo 11\", " #else +#ifdef _WIN32 +" \"font\": \"Consolas\", " +#else " \"font\": \"Monospace\", " #endif +#endif "//Use \"\" for default font, and for instance \"Monospace 12\" to also set size.\n" " \"clang_types\": {\n" " \"8\": \"def:function\",\n"