Mixer: Tweak spectrum view appearance.
This commit is contained in:
parent
f3fdea50d6
commit
23107541c8
|
@ -81,8 +81,8 @@ SpectrumView::sample_rate ( unsigned int sample_rate )
|
||||||
{
|
{
|
||||||
_sample_rate = sample_rate;
|
_sample_rate = sample_rate;
|
||||||
_fmin = 10;
|
_fmin = 10;
|
||||||
_fmax = 20000;
|
/* _fmax = 28000; */
|
||||||
if ( _fmax > _sample_rate * 0.5f )
|
/* /\* if ( _fmax > _sample_rate * 0.5f ) *\/ */
|
||||||
_fmax = _sample_rate * 0.5f;
|
_fmax = _sample_rate * 0.5f;
|
||||||
|
|
||||||
clear_plans();
|
clear_plans();
|
||||||
|
@ -243,7 +243,7 @@ SpectrumView::draw_semilog ( void )
|
||||||
|
|
||||||
float value = (1-i/16.0)*(_dbmax-_dbmin) + _dbmin;
|
float value = (1-i/16.0)*(_dbmax-_dbmin) + _dbmin;
|
||||||
sprintf(label, "%.1f", value);
|
sprintf(label, "%.1f", value);
|
||||||
fl_draw(label, x(), level + 3, w() - 2, 7, FL_ALIGN_RIGHT );
|
fl_draw(label, x() + 4, level + 3, w() - 8, 7, FL_ALIGN_LEFT );
|
||||||
}
|
}
|
||||||
|
|
||||||
//The frequency grid is defined with points at
|
//The frequency grid is defined with points at
|
||||||
|
|
Loading…
Reference in New Issue