mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
WS: crash bugfix related to missing strip panner
Surface made Ardour crash when a client connected and some session track was not a VCA nor had a panner, like MIDI strips.
This commit is contained in:
parent
7a9d4b1f64
commit
9c08c058a3
5 changed files with 18 additions and 30 deletions
|
|
@ -33,7 +33,7 @@ export default class Strip extends AddressableComponent {
|
|||
super(parent, addr);
|
||||
this._plugins = {};
|
||||
this._name = desc[0];
|
||||
this._isVca = desc[1];
|
||||
this._hasPan = desc[1];
|
||||
this._meter = 0;
|
||||
this._gain = 0;
|
||||
this._pan = 0;
|
||||
|
|
@ -48,8 +48,8 @@ export default class Strip extends AddressableComponent {
|
|||
return this._name;
|
||||
}
|
||||
|
||||
get isVca () {
|
||||
return this._isVca;
|
||||
get hasPan () {
|
||||
return this._hasPan;
|
||||
}
|
||||
|
||||
get meter () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue