Skip to content

Commit 5f7292e

Browse files
Walter.Liucloose
authored andcommitted
[#257] Adopt "General/foo" instead of "general/foo".
It may be the Qt5 bug that stores "general" section as "[%General]",not "[%general]" in NativeFormat on Linux. It will not bother windows user(s) anyhow, since the Windows registry use case-insensitive keys. This should fix #257 and #249.
1 parent a4d9abc commit 5f7292e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/options.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include <QWebSettings>
2121

2222

23-
static const char* MARKDOWN_CONVERTER = "general/converter";
24-
static const char* LAST_USED_STYLE = "general/lastusedstyle";
23+
static const char* MARKDOWN_CONVERTER = "General/converter";
24+
static const char* LAST_USED_STYLE = "General/lastusedstyle";
2525
static const char* STYLE_DEFAULT = "actionDefault";
2626
static const char* FONT_FAMILY_DEFAULT = "Monospace";
2727
static const char* FONT_FAMILY = "editor/font/family";

0 commit comments

Comments
 (0)