--- src/qtractorMixer.cpp.orig 2020-09-24 21:27:19.964567195 +0200 +++ src/qtractorMixer.cpp 2020-09-24 21:28:47.172516013 +0200 @@ -386,7 +386,7 @@ // Now, there's whether we are Audio or MIDI related... m_pMixerMeter = nullptr; m_pMidiLabel = nullptr; - int iFixedWidth = 54; + int iFixedWidth = 64; QPalette pal(m_pRibbon->palette()); switch (meterType) { case qtractorTrack::Audio: { // Type cast for proper audio monitor... @@ -554,7 +554,7 @@ if (pAudioMonitor) { const int iOldWidth = QFrame::width(); const int iAudioChannels = pAudioMonitor->channels(); - const int iFixedWidth = 54 + const int iFixedWidth = 64 + (iAudioChannels < 3 ? 24 : 8 * iAudioChannels); if (iFixedWidth != iOldWidth) { QFrame::setFixedWidth(iFixedWidth); --- src/qtractorMixer.h.orig 2021-03-13 18:19:27.204990406 +0100 +++ src/qtractorMixer.h 2021-03-13 18:19:39.830747667 +0100 @@ -263,7 +263,7 @@ // Initial minimum widget extents. QSize sizeHint() const - { return QSize(160, 420); } + { return QSize(80, 280); } private: