added setting for compact emotes Fixed #821

This commit is contained in:
fourtf
2018-10-29 21:46:43 +01:00
parent dd8e8ad960
commit d500ab59ea
4 changed files with 22 additions and 6 deletions
+13 -4
View File
@@ -83,9 +83,12 @@ void LookPage::addInterfaceTab(LayoutCreator<QVBoxLayout> layout)
QObject::connect(theme, &QComboBox::currentTextChanged,
[w](const QString &themeName) {
if (themeName == "Custom") {
if (themeName == "Custom")
{
w->show();
} else {
}
else
{
w->hide();
}
getApp()->windows->forceLayoutChannelViews();
@@ -97,9 +100,12 @@ void LookPage::addInterfaceTab(LayoutCreator<QVBoxLayout> layout)
{
w->setButtonSymbols(QDoubleSpinBox::NoButtons);
if (getApp()->themes->themeName.getValue() != "Custom") {
if (getApp()->themes->themeName.getValue() != "Custom")
{
w->hide();
} else {
}
else
{
w->show();
}
w->setRange(-1.0, 1.0);
@@ -181,6 +187,9 @@ void LookPage::addMessageTab(LayoutCreator<QVBoxLayout> layout)
layout.append(this->createCheckBox(
"Alternate background", getSettings()->alternateMessageBackground));
layout.append(
this->createCheckBox("Compact emotes", getSettings()->compactEmotes));
layout.append(this->createCheckBox("Grey out historic messages",
getSettings()->greyOutHistoricMessages));
// --