소스 검색

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()