Browse Source

Fixed line paste in normal text boxes

Brian Fiete 5 years ago
parent
commit
ada1aceef1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      BeefLibs/Beefy2D/src/widgets/EditWidget.bf

+ 1 - 1
BeefLibs/Beefy2D/src/widgets/EditWidget.bf

@@ -2043,7 +2043,7 @@ namespace Beefy.widgets
 
 		public void PasteText(String text, String extra)
 		{
-			if (extra == "line")
+			if ((extra == "line") && (mAllowVirtualCursor))
 			{
 				UndoBatchStart undoBatchStart = new UndoBatchStart("paste");
 				mData.mUndoManager.Add(undoBatchStart);