Skip to content

Commit 4c8333a

Browse files
qtooltip: Fix whitespace
Change-Id: I97676328036560a8afb66d607d1bef21a6930fad Reviewed-by: Volker Hilsheimer <[email protected]>
1 parent 26f92a3 commit 4c8333a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/widgets/kernel/qtooltip.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,9 +387,9 @@ void QTipLabel::placeTip(const QPoint &pos, QWidget *w)
387387

388388
QRect screenRect = screen->geometry();
389389
if (p.x() + this->width() > screenRect.x() + screenRect.width())
390-
p.rx() -= 4 + this->width();
390+
p.rx() -= 4 + this->width();
391391
if (p.y() + this->height() > screenRect.y() + screenRect.height())
392-
p.ry() -= 24 + this->height();
392+
p.ry() -= 24 + this->height();
393393
if (p.y() < screenRect.y())
394394
p.setY(screenRect.y());
395395
if (p.x() + this->width() > screenRect.x() + screenRect.width())

0 commit comments

Comments
 (0)