From abe2c92bedbc5e7a16ea4858e94694fc247d9552 Mon Sep 17 00:00:00 2001 From: Michael Gregorius Date: Sun, 14 Jan 2024 17:17:13 +0100 Subject: [PATCH] Resizable mixer window (#7037) Make the mixer window resizable and allow the effects rack to grow. This enables the users a better overview of the effects used. --- src/gui/MixerView.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gui/MixerView.cpp b/src/gui/MixerView.cpp index a28ac7976..a6ee2989c 100644 --- a/src/gui/MixerView.cpp +++ b/src/gui/MixerView.cpp @@ -75,7 +75,6 @@ MixerView::MixerView() : //setPalette(pal); setAutoFillBackground(true); - setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); setWindowTitle(tr("Mixer")); setWindowIcon(embed::getIconPixmap("mixer")); @@ -153,7 +152,6 @@ MixerView::MixerView() : // add the stacked layout for the effect racks of mixer channels - m_racksWidget->setFixedHeight(mixerChannelSize.height()); ml->addWidget(m_racksWidget); setCurrentMixerChannel(m_mixerChannelViews[0]);