From 2e03e387e46778de687f261a7668b42ac7f13ad0 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Tue, 26 May 2020 11:56:11 +0200 Subject: [PATCH] bug fix: audio fader sliders cannot be moved if the main windows is too small (#292) --- ChangeLog | 3 +++ src/audiomixerboard.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4275a9d6..d98ac5f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 + diff --git a/src/audiomixerboard.cpp b/src/audiomixerboard.cpp index aff997a2..c27062c8 100644 --- a/src/audiomixerboard.cpp +++ b/src/audiomixerboard.cpp @@ -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 );