diff --git a/dialogs/proxydialog.cpp b/dialogs/proxydialog.cpp index f190109d8..fd4407027 100644 --- a/dialogs/proxydialog.cpp +++ b/dialogs/proxydialog.cpp @@ -114,6 +114,8 @@ void ProxyDialog::accept() { proxy_generator.queue(info_list.at(i)); } + mainWindow->setWindowModified(true); + QDialog::accept(); } diff --git a/project/sourcescommon.cpp b/project/sourcescommon.cpp index b856fbcd1..0c7f55fcd 100644 --- a/project/sourcescommon.cpp +++ b/project/sourcescommon.cpp @@ -384,13 +384,17 @@ void SourcesCommon::clear_proxies_from_selected() { if (sequence != nullptr) { // close all clips so we can delete any proxies requested to be deleted closeActiveClips(sequence); + } - // delete proxies requested to be deleted - for (int i=0;iviewer_widget->frame_update(); } + + mainWindow->setWindowModified(true); }