From 539b94490f7ab660f24b3de80df5514f61d481b0 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 16 Jul 2012 14:48:07 +0000 Subject: do NOT mark imported MIDI files as un-writable - all MIDI files are subject to rewriting at any time git-svn-id: svn://localhost/ardour2/branches/3.0@13046 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/file_source.cc | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libs/ardour/file_source.cc') diff --git a/libs/ardour/file_source.cc b/libs/ardour/file_source.cc index 2f7ad2caa8..3017615948 100644 --- a/libs/ardour/file_source.cc +++ b/libs/ardour/file_source.cc @@ -554,6 +554,15 @@ FileSource::mark_immutable () } } +void +FileSource::mark_immutable_except_write () +{ + /* destructive sources stay writable, and their other flags don't change. */ + if (!(_flags & Destructive)) { + _flags = Flag (_flags & ~(Removable|RemovableIfEmpty|RemoveAtDestroy|CanRename)); + } +} + void FileSource::mark_nonremovable () { -- cgit v1.2.3