From a6325d3ffb81f4f34bbfb5763b1b975509203991 Mon Sep 17 00:00:00 2001 From: Michael Gregorius Date: Sun, 31 Dec 2023 13:59:46 +0100 Subject: [PATCH] Resizable mixer window 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 f20b60a3842..afae4665be7 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]);