mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
fix #3712
git-svn-id: http://svn.osgeo.org/qgis/trunk@15729 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
8196c87d43
commit
a8c2cfc2ef
@ -267,11 +267,13 @@ class PythonEdit(QTextEdit, code.InteractiveInterpreter):
|
||||
|
||||
def insertFromMimeData(self, source):
|
||||
self.cursor = self.textCursor()
|
||||
self.cursor.movePosition(QTextCursor.End, QTextCursor.MoveAnchor, 1)
|
||||
self.setTextCursor(self.cursor)
|
||||
if source.hasText():
|
||||
pasteList = QStringList()
|
||||
pasteList = source.text().split("\n")
|
||||
# move the cursor to the end only if the text is multi-line or is going to be pasted not into the last line
|
||||
if (len(pasteList) > 1) or (not self.isCursorInEditionZone()):
|
||||
self.cursor.movePosition(QTextCursor.End, QTextCursor.MoveAnchor, 1)
|
||||
self.setTextCursor(self.cursor)
|
||||
# with multi-line text also run the commands
|
||||
for line in pasteList[:-1]:
|
||||
self.insertPlainText(line)
|
||||
|
Loading…
x
Reference in New Issue
Block a user