mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
fix delivery: check if panshell exists on session-load
This commit is contained in:
parent
35aed0efab
commit
346310c60b
1 changed files with 1 additions and 1 deletions
|
|
@ -362,7 +362,7 @@ Delivery::set_state (const XMLNode& node, int version)
|
|||
reset_panner ();
|
||||
|
||||
XMLNode* pannnode = node.child (X_("Pannable"));
|
||||
if (_panshell->panner() && pannnode) {
|
||||
if (_panshell && _panshell->panner() && pannnode) {
|
||||
_panshell->pannable()->set_state (*pannnode, version);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue