This commit is contained in:
fourtf 2020-08-13 20:59:57 +02:00
parent bbcbad23a1
commit b2dab3cf21
2 changed files with 4 additions and 4 deletions

View file

@ -466,7 +466,7 @@ void NotebookTab::mousePressEvent(QMouseEvent *event)
switch (event->button())
{
case Qt::RightButton: {
this->menu_.popup(event->globalPos());
this->menu_.popup(event->globalPos() + QPoint(0, 8));
}
break;
default:;

View file

@ -333,7 +333,7 @@ std::unique_ptr<QMenu> SplitHeader::createMainMenu()
menu->addAction("Reload channel emotes", this,
SLOT(reloadChannelEmotes()), QKeySequence("F5"));
menu->addAction("Reload subscriber emotes", this,
SLOT(reloadSubscriberEmotes()));
SLOT(reloadSubscriberEmotes()), QKeySequence("F5"));
}
menu->addSeparator();
@ -729,8 +729,8 @@ void SplitHeader::enterEvent(QEvent *event)
tooltip->setText(this->tooltipText_);
tooltip->setWordWrap(false);
tooltip->adjustSize();
auto pos = this->mapToGlobal(this->rect().bottomLeft());
pos.setX(pos.x() + (this->width() - tooltip->width()) / 2);
auto pos = this->mapToGlobal(this->rect().bottomLeft()) +
QPoint((this->width() - tooltip->width()) / 2, 0);
tooltip->moveTo(this, pos, false);
tooltip->show();