Disable saveAs in media viewer if restricted.

This commit is contained in:
John Preston 2021-12-30 14:58:34 +03:00
parent 4cbfcc8dbc
commit 3623fb1f9a
1 changed files with 3 additions and 0 deletions

View File

@ -1515,6 +1515,9 @@ void OverlayWidget::notifyFileDialogShown(bool shown) {
}
void OverlayWidget::saveAs() {
if (showCopyRestriction()) {
return;
}
QString file;
if (_document) {
const auto &location = _document->location(true);