Changed some default settings (#2024)
Colorized nicknames now enabled by default Show channels live now enabled by default Bold usernames enabled by default
This commit is contained in:
@@ -79,7 +79,7 @@ public:
|
||||
BoolSetting hideModerationActions = {
|
||||
"/appearance/messages/hideModerationActions", false};
|
||||
BoolSetting colorizeNicknames = {"/appearance/messages/colorizeNicknames",
|
||||
false};
|
||||
true};
|
||||
|
||||
IntSetting tabDirection = {"/appearance/tabDirection",
|
||||
NotebookTabDirection::Horizontal};
|
||||
@@ -92,14 +92,14 @@ public:
|
||||
"/appearance/messages/alternateMessageBackground", false};
|
||||
FloatSetting boldScale = {"/appearance/boldScale", 63};
|
||||
BoolSetting showTabCloseButton = {"/appearance/showTabCloseButton", true};
|
||||
BoolSetting showTabLive = {"/appearance/showTabLiveButton", false};
|
||||
BoolSetting showTabLive = {"/appearance/showTabLiveButton", true};
|
||||
BoolSetting hidePreferencesButton = {"/appearance/hidePreferencesButton",
|
||||
false};
|
||||
BoolSetting hideUserButton = {"/appearance/hideUserButton", false};
|
||||
BoolSetting enableSmoothScrolling = {"/appearance/smoothScrolling", true};
|
||||
BoolSetting enableSmoothScrollingNewMessages = {
|
||||
"/appearance/smoothScrollingNewMessages", false};
|
||||
BoolSetting boldUsernames = {"/appearance/messages/boldUsernames", false};
|
||||
BoolSetting boldUsernames = {"/appearance/messages/boldUsernames", true};
|
||||
BoolSetting findAllUsernames = {"/appearance/messages/findAllUsernames",
|
||||
false};
|
||||
// BoolSetting customizable splitheader
|
||||
|
||||
@@ -634,7 +634,7 @@ void GeneralPage::initLayout(SettingsLayout &layout)
|
||||
|
||||
layout.addCheckbox("Show moderation messages", s.hideModerationActions,
|
||||
true);
|
||||
layout.addCheckbox("Random username color for users who never set a color",
|
||||
layout.addCheckbox("Colorize users without color set (gray names)",
|
||||
s.colorizeNicknames);
|
||||
layout.addCheckbox("Mention users with a comma (User,)",
|
||||
s.mentionUsersWithComma);
|
||||
|
||||
Reference in New Issue
Block a user