mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
OSC: fix issue #7444 send fader position/gain even when 0.
This commit is contained in:
parent
d4a089937b
commit
6ad4379b4d
2 changed files with 4 additions and 4 deletions
|
|
@ -42,8 +42,8 @@ OSCRouteObserver::OSCRouteObserver (boost::shared_ptr<Stripable> s, uint32_t ss,
|
|||
: _strip (s)
|
||||
,ssid (ss)
|
||||
,sur (su)
|
||||
,_last_gain (0.0)
|
||||
,_last_trim (0.0)
|
||||
,_last_gain (-1.0)
|
||||
,_last_trim (-1.0)
|
||||
,_init (true)
|
||||
{
|
||||
addr = lo_address_new_from_url (sur->remote_url.c_str());
|
||||
|
|
|
|||
|
|
@ -53,8 +53,8 @@ OSCSelectObserver::OSCSelectObserver (boost::shared_ptr<Stripable> s, lo_address
|
|||
: _strip (s)
|
||||
,sur (su)
|
||||
,nsends (0)
|
||||
,_last_gain (0.0)
|
||||
,_last_trim (0.0)
|
||||
,_last_gain (-1.0)
|
||||
,_last_trim (-1.0)
|
||||
,_init (true)
|
||||
{
|
||||
addr = lo_address_new_from_url (sur->remote_url.c_str());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue