bug fix: audio fader sliders cannot be moved if the main windows is too small (#292)
This commit is contained in:
parent
8552863493
commit
2e03e387e4
2 changed files with 4 additions and 1 deletions
|
@ -11,8 +11,11 @@
|
||||||
- display recorder state and latest recording directory in the server GUI,
|
- display recorder state and latest recording directory in the server GUI,
|
||||||
allow a new recording to be requested, by pljones (#228)
|
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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ CChannelFader::CChannelFader ( QWidget* pNW,
|
||||||
pFader->setTickPosition ( QSlider::TicksBothSides );
|
pFader->setTickPosition ( QSlider::TicksBothSides );
|
||||||
pFader->setRange ( 0, AUD_MIX_FADER_MAX );
|
pFader->setRange ( 0, AUD_MIX_FADER_MAX );
|
||||||
pFader->setTickInterval ( AUD_MIX_FADER_MAX / 9 );
|
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
|
// setup panning control
|
||||||
pPan->setRange ( 0, AUD_MIX_PAN_MAX );
|
pPan->setRange ( 0, AUD_MIX_PAN_MAX );
|
||||||
|
|
Loading…
Reference in a new issue