Skip to content

Commit 9aa4155

Browse files
committed
[composer] Paste in place should put items in page which cursor is over (fix #9244)
1 parent fbdf34c commit 9aa4155

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/qgscomposerview.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ void QgsComposerView::pasteItems( PasteMode mode )
960960
if ( composition() )
961961
{
962962
QPointF pt;
963-
if ( mode == PasteModeCursor )
963+
if ( mode == QgsComposerView::PasteModeCursor || mode == QgsComposerView::PasteModeInPlace )
964964
{
965965
// place items at cursor position
966966
pt = mapToScene( mapFromGlobal( QCursor::pos() ) );

0 commit comments

Comments
 (0)