mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-24 14:20:44 -04:00
added missing change in previous commit
This commit is contained in:
parent
10feb45bce
commit
7a4558a3da
1 changed files with 3 additions and 3 deletions
|
@ -259,10 +259,10 @@ void ElidedLabel::mousePressEvent(QMouseEvent *ev)
|
|||
}
|
||||
QLabel::mousePressEvent(ev);
|
||||
|
||||
if(ev->buttons()==Qt::RightButton)
|
||||
emit rightClicked(ev->pos());
|
||||
else
|
||||
if(ev->buttons()==Qt::LeftButton)
|
||||
emit clicked(ev->pos());
|
||||
else if(ev->buttons()==Qt::RightButton)
|
||||
emit rightClicked(ev->pos());
|
||||
}
|
||||
|
||||
void ElidedLabel::setTextColor(const QColor &color)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue