mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-14 18:46:34 +01:00
fix clicking when processors become active/inactive; reduce crazy 2.5sec delay for quit dialog
git-svn-id: svn://localhost/ardour2/branches/3.0@5402 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2093d59a96
commit
f411496289
20 changed files with 121 additions and 63 deletions
|
|
@ -65,6 +65,7 @@ const string Processor::state_node_name = "Processor";
|
|||
Processor::Processor(Session& session, const string& name)
|
||||
: SessionObject(session, name)
|
||||
, AutomatableControls(session)
|
||||
, _pending_active(false)
|
||||
, _active(false)
|
||||
, _next_ab_is_active(false)
|
||||
, _configured(false)
|
||||
|
|
@ -75,12 +76,14 @@ Processor::Processor(Session& session, const string& name)
|
|||
Processor::Processor (Session& session, const XMLNode& node)
|
||||
: SessionObject(session, "renameMe")
|
||||
, AutomatableControls(session)
|
||||
, _pending_active(false)
|
||||
, _active(false)
|
||||
, _next_ab_is_active(false)
|
||||
, _configured(false)
|
||||
, _gui(0)
|
||||
{
|
||||
set_state (node);
|
||||
_pending_active = _active;
|
||||
}
|
||||
|
||||
XMLNode&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue