소스 검색

Convert ~r~n to ~n when reading Clipboard.

Mark Sibly 9 년 전
부모
커밋
a6c822f5f8
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      modules/mojo/app/app.monkey2

+ 4 - 0
modules/mojo/app/app.monkey2

@@ -108,6 +108,10 @@ Class AppInstance
 		Local p:=SDL_GetClipboardText()
 		
 		Local str:=String.FromUtf8String( p )
+
+		'fix windows eols		
+		str=str.Replace( "~r~n","~n" )
+		str=str.Replace( "~r","~n" )		
 		
 		SDL_free( p )