mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Changed where the bold @username setting is found
This commit is contained in:
parent
a66a2f2e8d
commit
2e1fdbec32
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,6 @@
|
||||||
#define PLAY_SOUND "Play sound when your name is mentioned"
|
#define PLAY_SOUND "Play sound when your name is mentioned"
|
||||||
#define FLASH_TASKBAR "Flash taskbar when your name is mentioned"
|
#define FLASH_TASKBAR "Flash taskbar when your name is mentioned"
|
||||||
#define ALWAYS_PLAY "Always play highlight sound (Even if Chatterino is focused)"
|
#define ALWAYS_PLAY "Always play highlight sound (Even if Chatterino is focused)"
|
||||||
#define USERNAME_BOLD "Make @username bold"
|
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
|
|
||||||
|
@ -105,7 +104,6 @@ HighlightingPage::HighlightingPage()
|
||||||
}
|
}
|
||||||
|
|
||||||
layout.append(createCheckBox(ALWAYS_PLAY, app->settings->highlightAlwaysPlaySound));
|
layout.append(createCheckBox(ALWAYS_PLAY, app->settings->highlightAlwaysPlaySound));
|
||||||
layout.append(createCheckBox(USERNAME_BOLD, app->settings->usernameBold));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---- misc
|
// ---- misc
|
||||||
|
|
|
@ -148,6 +148,8 @@ void LookPage::addMessagesGroup(QVBoxLayout &layout)
|
||||||
|
|
||||||
// lowercase links
|
// lowercase links
|
||||||
box.append(this->createCheckBox("Display domains as lowercase", getSettings()->lowercaseLink));
|
box.append(this->createCheckBox("Display domains as lowercase", getSettings()->lowercaseLink));
|
||||||
|
// bold usernames
|
||||||
|
box.append(this->createCheckBox("Make @username bold", getSettings()->usernameBold));
|
||||||
}
|
}
|
||||||
|
|
||||||
void LookPage::addEmotesGroup(QVBoxLayout &layout)
|
void LookPage::addEmotesGroup(QVBoxLayout &layout)
|
||||||
|
|
Loading…
Reference in a new issue