Fixed it so a notification is always sent when saved to clipboard

This commit is contained in:
Jeremy Borgman
2020-09-10 09:50:24 -05:00
parent 72f52ac3ed
commit 9bc4ea5700
5 changed files with 26 additions and 14 deletions

View File

@@ -1011,7 +1011,7 @@ CaptureWidget::saveScreenshot()
if (m_context.savePath.isEmpty()) {
ScreenshotSaver().saveToFilesystemGUI(pixmap());
} else {
ScreenshotSaver().saveToFilesystem(pixmap(), m_context.savePath);
ScreenshotSaver().saveToFilesystem(pixmap(), m_context.savePath, "");
}
close();
}