Fixes C1001 compiler error on release builds with MSVC (#1417)
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user