Qt: Fix display of LED colours on Windows native themes

This commit is contained in:
TheLastRar 2025-03-12 23:43:43 +00:00 committed by Ty
parent fb18fdf5b7
commit fd983946f5
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ void ColorPickerButton::setColor(u32 rgb)
void ColorPickerButton::updateBackgroundColor()
{
setStyleSheet(QStringLiteral("background-color: #%1;").arg(static_cast<uint>(m_color), 8, 16, QChar('0')));
setStyleSheet(QStringLiteral("background-color: #%1;").arg(static_cast<uint>(m_color), 6, 16, QChar('0')));
}
void ColorPickerButton::onClicked()