View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0007436 | ardour | features | public | 2017-07-31 10:56 | 2020-04-19 20:18 |
| Reporter | OnkelDead | Assigned To | ovenwerks | ||
| Priority | normal | Severity | feature | Reproducibility | N/A |
| Status | closed | Resolution | fixed | ||
| Platform | any | ||||
| Product Version | 5.10 | ||||
| Summary | 0007436: OSC: add filed to plugin_list response which indicates plugin enable state | ||||
| Description | A OSC surface should be informed about the plugin enable state if it requests the list of plugins. | ||||
| Tags | No tags attached. | ||||
|
|
plugin_list.patch (411 bytes)
diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc
index 09939fd..954b7ed 100644
--- a/libs/surfaces/osc/osc.cc
+++ b/libs/surfaces/osc/osc.cc
@@ -4037,6 +4037,7 @@ OSC::route_plugin_list (int ssid, lo_message msg) {
boost::shared_ptr<ARDOUR::Plugin> pip = pi->plugin();
lo_message_add_string (reply, pip->name());
+ lo_message_add_int32(reply, redi->enabled() ? 1 : 0);
piid++;
}
|
|
|
Merged in commit e4925a90c |
|
|
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 |
|---|---|---|---|
| 2017-07-31 10:56 | OnkelDead | New Issue | |
| 2017-07-31 10:56 | OnkelDead | File Added: plugin_list.patch | |
| 2017-08-01 14:13 | ovenwerks | Note Added: 0019945 | |
| 2017-08-01 14:13 | ovenwerks | Status | new => resolved |
| 2017-08-01 14:13 | ovenwerks | Resolution | open => fixed |
| 2017-08-01 14:13 | ovenwerks | Assigned To | => ovenwerks |
| 2020-04-19 20:18 | system | Note Added: 0023769 | |
| 2020-04-19 20:18 | system | Status | resolved => closed |