|
|
|
|
@ -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 |
|
|
|
|
|