mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Merge branch 'fixCrash' of https://github.com/tcanabrava/subsurface into Qt
This commit is contained in:
commit
1245c232db
1 changed files with 7 additions and 1 deletions
|
@ -114,7 +114,7 @@ extern struct ev_select *ev_namelist;
|
||||||
extern int evn_allocated;
|
extern int evn_allocated;
|
||||||
extern int evn_used;
|
extern int evn_used;
|
||||||
|
|
||||||
ProfileGraphicsView::ProfileGraphicsView(QWidget* parent) : QGraphicsView(parent) , dive(0)
|
ProfileGraphicsView::ProfileGraphicsView(QWidget* parent) : QGraphicsView(parent) , dive(0), toolTip(0)
|
||||||
{
|
{
|
||||||
gc.printer = false;
|
gc.printer = false;
|
||||||
setScene(new QGraphicsScene());
|
setScene(new QGraphicsScene());
|
||||||
|
@ -138,6 +138,9 @@ ProfileGraphicsView::ProfileGraphicsView(QWidget* parent) : QGraphicsView(parent
|
||||||
|
|
||||||
void ProfileGraphicsView::wheelEvent(QWheelEvent* event)
|
void ProfileGraphicsView::wheelEvent(QWheelEvent* event)
|
||||||
{
|
{
|
||||||
|
if (!toolTip)
|
||||||
|
return;
|
||||||
|
|
||||||
setTransformationAnchor(QGraphicsView::AnchorUnderMouse);
|
setTransformationAnchor(QGraphicsView::AnchorUnderMouse);
|
||||||
|
|
||||||
// Scale the view / do the zoom
|
// Scale the view / do the zoom
|
||||||
|
@ -156,6 +159,9 @@ void ProfileGraphicsView::wheelEvent(QWheelEvent* event)
|
||||||
|
|
||||||
void ProfileGraphicsView::mouseMoveEvent(QMouseEvent* event)
|
void ProfileGraphicsView::mouseMoveEvent(QMouseEvent* event)
|
||||||
{
|
{
|
||||||
|
if (!toolTip)
|
||||||
|
return;
|
||||||
|
|
||||||
toolTip->refresh(&gc, mapToScene(event->pos()));
|
toolTip->refresh(&gc, mapToScene(event->pos()));
|
||||||
|
|
||||||
QPoint toolTipPos = mapFromScene(toolTip->pos());
|
QPoint toolTipPos = mapFromScene(toolTip->pos());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue