瀏覽代碼

Fixed whitespace copying issue

Brian Fiete 5 年之前
父節點
當前提交
b8340dfdc6
共有 1 個文件被更改,包括 3 次插入7 次删除
  1. 3 7
      BeefLibs/Beefy2D/src/widgets/EditWidget.bf

+ 3 - 7
BeefLibs/Beefy2D/src/widgets/EditWidget.bf

@@ -2004,11 +2004,8 @@ namespace Beefy.widgets
 			{
 				String selText = scope String();
 				GetSelectionText(selText);
-				if (!selText.IsWhiteSpace)
-				{
-			        BFApp.sApp.SetClipboardText(selText);
-			        DeleteSelection();
-				}
+		        BFApp.sApp.SetClipboardText(selText);
+		        DeleteSelection();
 			}
 		}
 
@@ -2016,8 +2013,7 @@ namespace Beefy.widgets
 		{
 			String selText = scope String();
 			GetSelectionText(selText);
-			if (!selText.IsWhiteSpace)
-				BFApp.sApp.SetClipboardText(selText);
+			BFApp.sApp.SetClipboardText(selText);
 		}
 
 		public void PasteText()