Skip to content

Commit 7dd55e8

Browse files
Merge pull request #28512 from Eism/qt6_mixer_height_fix
fixed #28369: Mixer becomes half size when opened every second time
2 parents 586d114 + 4f8e8e6 commit 7dd55e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/playback/qml/MuseScore/Playback/MixerPanel.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ColumnLayout {
4747
spacing: 0
4848

4949
function resizePanelToContentHeight() {
50-
if (contentColumn.completed) {
50+
if (contentColumn.completed && implicitHeight > 0) {
5151
root.resizeRequested(width, implicitHeight)
5252
}
5353
}

0 commit comments

Comments
 (0)