Skip to content
Snippets Groups Projects
Commit 22a08ba6 authored by Joe Donofry's avatar Joe Donofry
Browse files

Fix lint issue

parent f869ff5d
No related branches found
No related tags found
No related merge requests found
......@@ -615,11 +615,11 @@ TimelineItem::refreshAuthorColor()
qApp->style()->polish(this);
// generate user's unique color.
auto backCol = backgroundColor().name();
userColor = utils::generateContrastingHexColor(userName_->toolTip(), backCol);
userColor =
utils::generateContrastingHexColor(userName_->toolTip(), backCol);
Cache::insertUserColor(userName_->toolTip(), userColor);
}
userName_->setStyleSheet("QLabel { color : " + userColor + "; }");
}
}
// The username/timestamp is displayed along with the message body.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment