mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Merge pull request #2282 from PhenomRetroShare/Fix_ElidedLabelToolTipBackground
Fix ElidedLabel ToolTip background color.
This commit is contained in:
commit
c1eb060972
@ -34,10 +34,10 @@ ElidedLabel::ElidedLabel(const QString &text, QWidget *parent)
|
||||
, mElided(false)
|
||||
, mOnlyPlainText(false)
|
||||
, mContent(text)
|
||||
, mRectElision(QRect())
|
||||
, mTextColor(QColor())
|
||||
{
|
||||
setStyleSheet("background-color: rgba(0,0,0,0%)");
|
||||
mRectElision = QRect();
|
||||
setStyleSheet("ElidedLabel{background-color: rgba(0,0,0,0%)}");
|
||||
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
||||
}
|
||||
|
||||
@ -46,10 +46,10 @@ ElidedLabel::ElidedLabel(QWidget *parent)
|
||||
, mElided(false)
|
||||
, mOnlyPlainText(false)
|
||||
, mContent("")
|
||||
, mRectElision(QRect())
|
||||
, mTextColor(QColor())
|
||||
{
|
||||
setStyleSheet("background-color: rgba(0,0,0,0%)");
|
||||
mRectElision = QRect();
|
||||
setStyleSheet("ElidedLabel{background-color: rgba(0,0,0,0%)}");
|
||||
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
||||
}
|
||||
|
||||
|
@ -154,7 +154,6 @@ GxsForumThreadWidget StyledElidedLabel#forumName
|
||||
padding: 2px;
|
||||
font: bold;
|
||||
font-size: 15px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
GroupTreeWidget
|
||||
|
Loading…
Reference in New Issue
Block a user