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.
This commit is contained in:
Michael Gregorius
2024-01-14 17:17:13 +01:00
committed by GitHub
parent b53f2b4f54
commit abe2c92bed

View File

@@ -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]);