mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Make pin tooltip work over pinned graphs too
This commit is contained in:
parent
ffabde2454
commit
9ebb272491
@ -1308,6 +1308,9 @@ void gGraphView::mouseMoveEvent(QMouseEvent *event)
|
|||||||
if (x >= titleWidth + 10) {
|
if (x >= titleWidth + 10) {
|
||||||
this->setCursor(Qt::ArrowCursor);
|
this->setCursor(Qt::ArrowCursor);
|
||||||
} else {
|
} else {
|
||||||
|
m_tooltip->display("Double click title to pin / unpin\nClick and drag to reorder graphs", x + 10, y, TT_AlignLeft);
|
||||||
|
timedRedraw(30);
|
||||||
|
|
||||||
this->setCursor(Qt::OpenHandCursor);
|
this->setCursor(Qt::OpenHandCursor);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1358,7 +1361,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent *event)
|
|||||||
if (x >= titleWidth + 10) {
|
if (x >= titleWidth + 10) {
|
||||||
this->setCursor(Qt::ArrowCursor);
|
this->setCursor(Qt::ArrowCursor);
|
||||||
} else {
|
} else {
|
||||||
m_tooltip->display("Double click title to pin\nClick and drag to reorder graphs", x + 10, y, TT_AlignLeft);
|
m_tooltip->display("Double click title to pin / unpin\nClick and drag to reorder graphs", x + 10, y, TT_AlignLeft);
|
||||||
timedRedraw(30);
|
timedRedraw(30);
|
||||||
|
|
||||||
this->setCursor(Qt::OpenHandCursor);
|
this->setCursor(Qt::OpenHandCursor);
|
||||||
|
Loading…
Reference in New Issue
Block a user