From eee78623636183d71bf8bef37450b7714448a13d Mon Sep 17 00:00:00 2001 From: Richard Stanway Date: Sat, 23 May 2020 01:15:02 +0200 Subject: [PATCH] UI: Don't show alpha value for color source This isn't editable by the user, so it doesn't make sense to show it. --- UI/properties-view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/properties-view.cpp b/UI/properties-view.cpp index 6115c9297..5d7847a76 100644 --- a/UI/properties-view.cpp +++ b/UI/properties-view.cpp @@ -650,7 +650,7 @@ void OBSPropertiesView::AddColor(obs_property_t *prop, QFormLayout *layout, QPalette palette = QPalette(color); colorLabel->setFrameStyle(QFrame::Sunken | QFrame::Panel); - colorLabel->setText(color.name(QColor::HexArgb)); + colorLabel->setText(color.name(QColor::HexRgb)); colorLabel->setPalette(palette); colorLabel->setStyleSheet( QString("background-color :%1; color: %2;")