Update MinGW CI to Ubuntu 20.04 (#7259)

Update MinGW CI to Ubuntu 20.04
* Use ghcr.io/lmms/linux.mingw:20.04
* Fix deprecation in ClipView.cpp
* Fix ccache and simplify git configuration
* Apply patch by @DomClark for MinGW's SDL2 target
* Update excludelist-win
This commit is contained in:
Dalton Messmer
2024-05-23 13:21:57 -04:00
committed by GitHub
parent e9848dbbbb
commit 2e6545328c
4 changed files with 21 additions and 9 deletions

View File

@@ -356,7 +356,7 @@ void ClipView::selectColor()
// Get a color from the user
const auto newColor = ColorChooser{this}
.withPalette(ColorChooser::Palette::Track)
->getColor(m_clip->color().value_or(palette().background().color()));
->getColor(m_clip->color().value_or(palette().window().color()));
if (newColor.isValid()) { setColor(newColor); }
}