Navigation Menu

Skip to content

Commit

Permalink
fix advanced digitizing panel display issue after panning
Browse files Browse the repository at this point in the history
panning would cause the rubberbands of the adv. digit. panel to be invisible.
update the canvas item is now done after each extent changes
  • Loading branch information
3nids committed Jun 15, 2017
1 parent c257448 commit 40e5dda
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/gui/qgsmapcanvas.cpp
Expand Up @@ -183,6 +183,8 @@ QgsMapCanvas::QgsMapCanvas( QWidget *parent )

connect( &mAutoRefreshTimer, &QTimer::timeout, this, &QgsMapCanvas::autoRefreshTriggered );

connect( this, &QgsMapCanvas::extentsChanged, this, &QgsMapCanvas::updateCanvasItemPositions );

setInteractive( false );

refresh();
Expand Down Expand Up @@ -790,9 +792,6 @@ void QgsMapCanvas::setExtent( const QgsRectangle &r, bool magnified )
// update controls' enabled state
emit zoomLastStatusChanged( mLastExtentIndex > 0 );
emit zoomNextStatusChanged( mLastExtentIndex < mLastExtent.size() - 1 );
// notify canvas items of change
updateCanvasItemPositions();

} // setExtent

void QgsMapCanvas::setCenter( const QgsPointXY &center )
Expand Down Expand Up @@ -831,10 +830,6 @@ void QgsMapCanvas::setRotation( double degrees )
mSettings.setRotation( degrees );
emit rotationChanged( degrees );
emit extentsChanged(); // visible extent changes with rotation

// notify canvas items of change (needed?)
updateCanvasItemPositions();

} // setRotation


Expand Down Expand Up @@ -890,8 +885,6 @@ void QgsMapCanvas::zoomToNextExtent()
// update controls' enabled state
emit zoomLastStatusChanged( mLastExtentIndex > 0 );
emit zoomNextStatusChanged( mLastExtentIndex < mLastExtent.size() - 1 );
// notify canvas items of change
updateCanvasItemPositions();
}
}// zoomToNextExtent

Expand Down

0 comments on commit 40e5dda

Please sign in to comment.