From d39d57c1ff3ebddc6e3840ae3ada3a033366e8a5 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sat, 2 Feb 2019 14:54:26 +1100 Subject: [PATCH] change modified status on proxy change --- dialogs/proxydialog.cpp | 2 ++ project/sourcescommon.cpp | 12 ++++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) 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); }