Skip to content

Commit

Permalink
If 'copyrightlogo' is 'none' then treat it as an empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Jul 14, 2012
1 parent 38c4fe5 commit d01b7d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mythplugins/mythweather/mythweather/weatherScreen.cpp
Expand Up @@ -236,6 +236,9 @@ QString WeatherScreen::formatDataItem(const QString &key, const QString &value)
}
}

if (key == "copyrightlogo" && value == "none")
value = "";

return value;
}

Expand Down

0 comments on commit d01b7d2

Please sign in to comment.