diff options
author | janrupf <werbung.janrupf@t-online.de> | 2019-06-18 14:41:07 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2019-06-22 01:47:07 +0200 |
commit | 2a96e1690248e8e7f4ba7dc266fbfb2675b702be (patch) | |
tree | 3976d163bba6fa6d3e80ae3bb4ace16dcdc9d55c /application | |
parent | ce12f1a734e08f1653aa482279a4dc6b6f3667eb (diff) | |
download | MultiMC-2a96e1690248e8e7f4ba7dc266fbfb2675b702be.tar MultiMC-2a96e1690248e8e7f4ba7dc266fbfb2675b702be.tar.gz MultiMC-2a96e1690248e8e7f4ba7dc266fbfb2675b702be.tar.lz MultiMC-2a96e1690248e8e7f4ba7dc266fbfb2675b702be.tar.xz MultiMC-2a96e1690248e8e7f4ba7dc266fbfb2675b702be.zip |
GH-689 Don't create album for single screenshot
Diffstat (limited to 'application')
-rw-r--r-- | application/pages/instance/ScreenshotsPage.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/application/pages/instance/ScreenshotsPage.cpp b/application/pages/instance/ScreenshotsPage.cpp index 3420e86b..e61bf5c1 100644 --- a/application/pages/instance/ScreenshotsPage.cpp +++ b/application/pages/instance/ScreenshotsPage.cpp @@ -286,6 +286,38 @@ void ScreenshotsPage::on_uploadBtn_clicked() QList<ScreenshotPtr> uploaded; auto job = NetJobPtr(new NetJob("Screenshot Upload")); + if(selection.size() < 2) + { + auto item = selection.at(0); + auto info = m_model->fileInfo(item); + auto screenshot = std::make_shared<ScreenShot>(info); + job->addNetAction(ImgurUpload::make(screenshot)); + + m_uploadActive = true; + ProgressDialog dialog(this); + if(dialog.execWithTask(job.get()) != QDialog::Accepted) + { + CustomMessageBox::selectable(this, tr("Failed to upload screenshots!"), + tr("Unknown error"), QMessageBox::Warning)->exec(); + } + else + { + auto link = screenshot->m_url; + QClipboard *clipboard = QApplication::clipboard(); + clipboard->setText(link); + CustomMessageBox::selectable( + this, + tr("Upload finished"), + tr("The <a href=\"%1\">link to the uploaded screenshot</a> has been placed in your clipboard.") + .arg(link), + QMessageBox::Information + )->exec(); + } + + m_uploadActive = false; + return; + } + for (auto item : selection) { auto info = m_model->fileInfo(item); |