mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
Fix showing the stuff on the canvas in the right positions.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
ea5353025f
commit
9a40333067
1 changed files with 2 additions and 4 deletions
|
@ -163,9 +163,8 @@ void ProfileGraphicsView::mouseMoveEvent(QMouseEvent* event)
|
|||
ensureVisible(event->pos().x(), event->pos().y(), 10, 10, 100, 100);
|
||||
toolTip->setPos(mapToScene(toolTipPos).x(), mapToScene(toolTipPos).y());
|
||||
|
||||
if (zoomLevel < 0){
|
||||
if (zoomLevel < 0)
|
||||
QGraphicsView::mouseMoveEvent(event);
|
||||
}
|
||||
}
|
||||
|
||||
bool ProfileGraphicsView::eventFilter(QObject* obj, QEvent* event)
|
||||
|
@ -322,8 +321,7 @@ void ProfileGraphicsView::plot(struct dive *d)
|
|||
}
|
||||
#endif
|
||||
|
||||
QRectF curerntRect = scene()->itemsBoundingRect();
|
||||
scene()->setSceneRect( -10, -10, curerntRect.width() + 10, curerntRect.height() +10 );
|
||||
scene()->setSceneRect(scene()->itemsBoundingRect());
|
||||
}
|
||||
|
||||
void ProfileGraphicsView::plot_depth_scale()
|
||||
|
|
Loading…
Reference in a new issue