mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
list action-names as part of --bindings
This commit is contained in:
parent
0bab9d2822
commit
b75fb503fb
1 changed files with 3 additions and 2 deletions
|
|
@ -496,8 +496,9 @@ ARDOUR_UI::post_engine ()
|
|||
|
||||
vector<string>::iterator n;
|
||||
vector<string>::iterator k;
|
||||
for (n = names.begin(), k = keys.begin(); n != names.end(); ++n, ++k) {
|
||||
cout << "Action: " << (*n) << " bound to " << (*k) << endl;
|
||||
vector<string>::iterator p;
|
||||
for (n = names.begin(), k = keys.begin(), p = paths.begin(); n != names.end(); ++n, ++k, ++p) {
|
||||
cout << "Action: '" << (*n) << "' bound to '" << (*k) << "' Path: '" << (*p) << "'" << endl;
|
||||
}
|
||||
|
||||
halt_connection.disconnect ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue