mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix display of LED colours on Windows native themes
This commit is contained in:
parent
fb18fdf5b7
commit
fd983946f5
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue