View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0003467 | ardour | bugs | public | 2010-09-21 09:35 | 2020-04-19 20:14 |
| Reporter | lincoln | Assigned To | cth103 | ||
| Priority | normal | Severity | tweak | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Target Version | 3.0-beta1 | ||||
| Summary | 0003467: [PATCH] Region trims update region list even of property changes are suspended | ||||
| Description | When 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. | ||||
| Tags | No tags attached. | ||||
|
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
|
|
|
Fixed a bit differently in SVN. |
|
|
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. |
| 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 |