Skip to content
Permalink
Browse files
Fix pasting items to the top or left of first page
  • Loading branch information
nyalldawson committed Dec 6, 2017
1 parent ef9e013 commit d36884f
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1132,7 +1132,7 @@ void QgsLayoutDesignerDialog::undoRedoOccurredForItems( const QSet<QString> item

void QgsLayoutDesignerDialog::paste()
{
QPointF pt = mView->mapToScene( mView->mapFromGlobal( QCursor::pos() ) );
QPointF pt = mView->mapFromGlobal( QCursor::pos() );
//TODO - use a better way of determining whether paste was triggered by keystroke
//or menu item
QList< QgsLayoutItem * > items;

0 comments on commit d36884f

Please sign in to comment.