View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0002330 | ardour | features | public | 2008-06-25 18:43 | 2020-04-19 20:13 |
| Reporter | kemitix | Assigned To | paul | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Product Version | SVN/2.0-ongoing | ||||
| Summary | 0002330: Can't Lock multiple Regions anymore | ||||
| Description | I used to be able to select several regions and right-click (sub-menu) Lock. This ability has disappeared since the new Selected Regions sub-menu was added. Could this feature be re-enabled? | ||||
| Tags | No tags attached. | ||||
|
2008-06-25 19:49
|
lock-mute-opaque-multiple-selections.patch (781 bytes)
Index: gtk2_ardour/editor.cc
===================================================================
--- gtk2_ardour/editor.cc (revision 3493)
+++ gtk2_ardour/editor.cc (working copy)
@@ -1873,6 +1873,16 @@
fooc.block (false);
}
}
+ } else {
+ // multiple regions selected
+ // how should these act?
+ // here they toggle the property of all selected regions
+
+ items.push_back (MenuElem (_("Lock"), mem_fun(*this, &Editor::toggle_region_lock)));
+ items.push_back (MenuElem (_("Mute"), mem_fun(*this, &Editor::toggle_region_mute)));
+ if (!Profile->get_sae()) {
+ items.push_back (MenuElem (_("Opaque"), mem_fun(*this, &Editor::toggle_region_opaque)));
+ }
}
items.push_back (CheckMenuElem (_("Original position"), mem_fun(*this, &Editor::naturalize)));
|
|
|
How about this patch (lock-mute-opaque-multiple-selections.patch). With this, "Lock" will toggle the locked state of all the selected regions. There's no tick mark in the menu to indicate the current locked state now, though, even if all the selected regions are locked: that would be a bit more difficult. |
|
|
That works for me. Thanks. :) |
|
|
applied and committed as part of rev 3495. thanks as usual. |
|
|
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 |
|---|---|---|---|
| 2008-06-25 18:43 | kemitix | New Issue | |
| 2008-06-25 19:49 | colinf | File Added: lock-mute-opaque-multiple-selections.patch | |
| 2008-06-25 19:53 | colinf | Note Added: 0005078 | |
| 2008-06-25 20:06 | kemitix | Note Added: 0005079 | |
| 2008-06-26 01:54 | paul | cost | => 0.00 |
| 2008-06-26 01:54 | paul | Status | new => resolved |
| 2008-06-26 01:54 | paul | Resolution | open => fixed |
| 2008-06-26 01:54 | paul | Assigned To | => paul |
| 2008-06-26 01:54 | paul | Note Added: 0005080 | |
| 2020-04-19 20:13 | system | Note Added: 0021767 | |
| 2020-04-19 20:13 | system | Status | resolved => closed |