View Issue Details

IDProjectCategoryView StatusLast Update
0003467ardourbugspublic2020-04-19 20:14
Reporterlincoln Assigned Tocth103  
PrioritynormalSeveritytweakReproducibilityalways
Status closedResolutionfixed 
Target Version3.0-beta1 
Summary0003467: [PATCH] Region trims update region list even of property changes are suspended
DescriptionWhen trimming a region the region length data is being updated in real time. This is not required and other region operations do not do real time updates. Attached patch fixes this issue.
TagsNo tags attached.

Activities

2010-09-21 09:35

 

statful-property-change-tracking-fixlet.patch (440 bytes)   
Index: libs/pbd/stateful.cc
===================================================================
--- libs/pbd/stateful.cc	(revision 7819)
+++ libs/pbd/stateful.cc	(working copy)
@@ -274,6 +274,7 @@
 Stateful::suspend_property_changes ()
 {
         _frozen++;
+	_no_property_changes = true;
 }
 
 void
@@ -297,6 +298,8 @@
         mid_thaw (what_changed);
 
         send_change (what_changed);
+	
+	_no_property_changes = false;
 }
 
 bool

cth103

2010-09-21 23:23

administrator   ~0009128

Fixed a bit differently in SVN.

system

2020-04-19 20:14

developer   ~0022231

Issue has been closed automatically, by Trigger Close Plugin.
Feel free to re-open with additional information if you think the issue is not resolved.

Issue History

Date Modified Username Field Change
2010-09-21 09:35 lincoln New Issue
2010-09-21 09:35 lincoln File Added: statful-property-change-tracking-fixlet.patch
2010-09-21 13:27 cth103 cost => 0.00
2010-09-21 13:27 cth103 Target Version => 3.0-beta1
2010-09-21 13:27 cth103 Summary Region trims update region list even of property changes are suspended => [PATCH] Region trims update region list even of property changes are suspended
2010-09-21 23:23 cth103 Note Added: 0009128
2010-09-21 23:23 cth103 Status new => resolved
2010-09-21 23:23 cth103 Resolution open => fixed
2010-09-21 23:23 cth103 Assigned To => cth103
2020-04-19 20:14 system Note Added: 0022231
2020-04-19 20:14 system Status resolved => closed