mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
changed scrollbar bg
This commit is contained in:
parent
4b52a98778
commit
10b0466052
|
@ -179,8 +179,7 @@ void MessageLayout::paint(QPainter &painter, int width, int y, int messageIndex,
|
||||||
|
|
||||||
QBrush brush(color, Qt::VerPattern);
|
QBrush brush(color, Qt::VerPattern);
|
||||||
|
|
||||||
painter.fillRect(0, y + this->container_.getHeight() - 1, this->container_.getWidth(), 1,
|
painter.fillRect(0, y + this->container_.getHeight() - 1, pixmap->width(), 1, brush);
|
||||||
brush);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this->bufferValid_ = true;
|
this->bufferValid_ = true;
|
||||||
|
|
|
@ -183,8 +183,9 @@ void ThemeManager::actuallyUpdate(double hue, double multiplier)
|
||||||
// this->messages.seperatorInner =
|
// this->messages.seperatorInner =
|
||||||
|
|
||||||
// Scrollbar
|
// Scrollbar
|
||||||
this->scrollbars.background = splits.background;
|
this->scrollbars.background = QColor(0, 0, 0, 0);
|
||||||
this->scrollbars.background.setAlphaF(qreal(0.2));
|
// this->scrollbars.background = splits.background;
|
||||||
|
// this->scrollbars.background.setAlphaF(qreal(0.2));
|
||||||
this->scrollbars.thumb = getColor(0, sat, 0.80);
|
this->scrollbars.thumb = getColor(0, sat, 0.80);
|
||||||
this->scrollbars.thumbSelected = getColor(0, sat, 0.7);
|
this->scrollbars.thumbSelected = getColor(0, sat, 0.7);
|
||||||
|
|
||||||
|
|
|
@ -108,6 +108,7 @@ AppearancePage::AppearancePage()
|
||||||
|
|
||||||
auto emotes = layout.emplace<QGroupBox>("Emotes").setLayoutType<QVBoxLayout>();
|
auto emotes = layout.emplace<QGroupBox>("Emotes").setLayoutType<QVBoxLayout>();
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
emotes.append(
|
emotes.append(
|
||||||
this->createCheckBox("Enable Twitch emotes", app->settings->enableTwitchEmotes));
|
this->createCheckBox("Enable Twitch emotes", app->settings->enableTwitchEmotes));
|
||||||
emotes.append(this->createCheckBox("Enable BetterTTV emotes for Twitch",
|
emotes.append(this->createCheckBox("Enable BetterTTV emotes for Twitch",
|
||||||
|
@ -115,6 +116,7 @@ AppearancePage::AppearancePage()
|
||||||
emotes.append(this->createCheckBox("Enable FrankerFaceZ emotes for Twitch",
|
emotes.append(this->createCheckBox("Enable FrankerFaceZ emotes for Twitch",
|
||||||
app->settings->enableFfzEmotes));
|
app->settings->enableFfzEmotes));
|
||||||
emotes.append(this->createCheckBox("Enable emojis", app->settings->enableEmojis));
|
emotes.append(this->createCheckBox("Enable emojis", app->settings->enableEmojis));
|
||||||
|
*/
|
||||||
emotes.append(
|
emotes.append(
|
||||||
this->createCheckBox("Enable animations", app->settings->enableGifAnimations));
|
this->createCheckBox("Enable animations", app->settings->enableGifAnimations));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue