Update: Compilation fix for Qt 6.6, update of RELEASES.txt

This commit is contained in:
Jakub Melka
2023-11-19 15:41:42 +01:00
parent 65fd88aa71
commit ed79aa0334
11 changed files with 27 additions and 16 deletions

View File

@ -132,7 +132,7 @@ void SettingsDockWidget::onEditColorChanged()
auto saveColor = [&isChanged](QComboBox* comboBox, QColor& color)
{
QColor oldColor = color;
color.setNamedColor(comboBox->currentText());
color.fromString(comboBox->currentText());
isChanged = isChanged || oldColor != color;
};