13
0

Set up send fader default position correctly. Fixes #3680.

git-svn-id: svn://localhost/ardour2/branches/3.0@8471 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-01-06 21:57:15 +00:00
parent 73f898146d
commit 5bff882ce1

View File

@ -226,7 +226,8 @@ ProcessorEntry::name () const
SendProcessorEntry::SendProcessorEntry (boost::shared_ptr<Send> s, Width w)
: ProcessorEntry (s, w),
_send (s),
_adjustment (0, 0, 1, 0.01, 0.1),
/* set the adjustment to a gain of 0dB so that the fader's default value is right */
_adjustment (0.781787, 0, 1, 0.01, 0.1),
_fader (_slider, &_adjustment, 0, false),
_ignore_gain_change (false)
{