bug fix: audio fader sliders cannot be moved if the main windows is too small (#292)

This commit is contained in:
Volker Fischer 2020-05-26 11:56:11 +02:00
parent 8552863493
commit 2e03e387e4
2 changed files with 4 additions and 1 deletions

View File

@ -11,8 +11,11 @@
- display recorder state and latest recording directory in the server GUI,
allow a new recording to be requested, by pljones (#228)
- bug fix: audio fader sliders cannot be moved if the main windows is too small (#292)
TODO create protocol message to inform client about its ID at the server

View File

@ -68,7 +68,7 @@ CChannelFader::CChannelFader ( QWidget* pNW,
pFader->setTickPosition ( QSlider::TicksBothSides );
pFader->setRange ( 0, AUD_MIX_FADER_MAX );
pFader->setTickInterval ( AUD_MIX_FADER_MAX / 9 );
pFader->setMinimumHeight ( 75 );
pFader->setMinimumHeight ( 85 ); // if this value is too small, the fader might not be movable with the mouse for fancy skin (#292)
// setup panning control
pPan->setRange ( 0, AUD_MIX_PAN_MAX );