From aafdcecafff5df168394f342343836e3b3f403c3 Mon Sep 17 00:00:00 2001 From: Rossmaxx Date: Thu, 19 Sep 2024 11:18:05 +0530 Subject: [PATCH 1/3] attempt 2 at a fix --- src/gui/MixerView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/MixerView.cpp b/src/gui/MixerView.cpp index 8152509f86a..e9ec1265667 100644 --- a/src/gui/MixerView.cpp +++ b/src/gui/MixerView.cpp @@ -234,6 +234,7 @@ void MixerView::refreshDisplay() for (int i = 0; i < m_mixerChannelViews.size(); ++i) { updateMixerChannel(i); + m_mixerChannelViews[i]->m_effectRackView->update(); } updateMaxChannelSelector(); From aa2a20f118ddcec1c95c4c27d56f2c29ea48df72 Mon Sep 17 00:00:00 2001 From: Rossmaxx Date: Thu, 19 Sep 2024 11:25:08 +0530 Subject: [PATCH 2/3] fixed it --- include/EffectRackView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/EffectRackView.h b/include/EffectRackView.h index fec627a56f9..695bad24b6e 100644 --- a/include/EffectRackView.h +++ b/include/EffectRackView.h @@ -56,9 +56,9 @@ public slots: void moveUp(EffectView* view); void moveDown(EffectView* view); void deletePlugin(EffectView* view); + void update(); private slots: - virtual void update(); void addEffect(); From 198f8ee1bbd0a4ba33546f68dde50d23a52a08a7 Mon Sep 17 00:00:00 2001 From: Rossmaxx Date: Thu, 19 Sep 2024 12:29:32 +0530 Subject: [PATCH 3/3] fix the other regression --- src/gui/instrument/InstrumentTrackWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/instrument/InstrumentTrackWindow.cpp b/src/gui/instrument/InstrumentTrackWindow.cpp index 1fb8596625e..0d5fc085430 100644 --- a/src/gui/instrument/InstrumentTrackWindow.cpp +++ b/src/gui/instrument/InstrumentTrackWindow.cpp @@ -289,7 +289,7 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) : flags |= Qt::MSWindowsFixedSizeDialogHint; // any better way than this? } else { - subWin->setMaximumSize(m_instrumentView->maximumHeight() + 12, m_instrumentView->maximumWidth() + 208); + subWin->setMaximumSize(m_instrumentView->maximumWidth() + 12, m_instrumentView->maximumHeight() + 208); subWin->setMinimumSize( m_instrumentView->minimumWidth() + 12, m_instrumentView->minimumHeight() + 208); } flags &= ~Qt::WindowMaximizeButtonHint;