Explorar o código

Fixed whitespace copying issue

Brian Fiete %!s(int64=5) %!d(string=hai) anos
pai
achega
b8340dfdc6
Modificáronse 1 ficheiros con 3 adicións e 7 borrados
  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()