Merge branch 'Plasma/5.8'

wilder-5.14
David Edmundson 10 years ago
commit 4acb9e9bee
  1. 7
      wallpapers/image/image.cpp

@ -118,7 +118,12 @@ void Image::addUrl(const QString &url)
void Image::addUrls(const QStringList &urls)
{
addUrls(urls);
bool first = true;
for (const QString &url: urls) {
// set the first drop as the current paper, just add the rest to the roll
addUrl(QUrl(url), first);
first = false;
}
}
Image::RenderingMode Image::renderingMode() const

Loading…
Cancel
Save