mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fixes C1001 compiler error on release builds with MSVC (#1417)
This commit is contained in:
parent
556c2aef2b
commit
e3d3f12425
|
@ -85,7 +85,7 @@ void Theme::actuallyUpdate(double hue, double multiplier)
|
|||
if (getSettings()->highlightColor != "")
|
||||
{
|
||||
this->messages.backgrounds.highlighted =
|
||||
QColor(getSettings()->highlightColor);
|
||||
QColor(getSettings()->highlightColor.getValue());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -199,7 +199,7 @@ void openStreamlinkForChannel(const QString &channel)
|
|||
{
|
||||
QString channelURL = "twitch.tv/" + channel;
|
||||
|
||||
QString preferredQuality = getSettings()->preferredQuality;
|
||||
QString preferredQuality = getSettings()->preferredQuality.getValue();
|
||||
preferredQuality = preferredQuality.toLower();
|
||||
|
||||
if (preferredQuality == "choose")
|
||||
|
|
Loading…
Reference in a new issue