File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -560,7 +560,8 @@ public bool PreFilterMessage(ref Message m)
560560 else
561561 {
562562 var text = element . GetTextFromConsole ( ) ?? element . GetTextFromWindow ( ) ;
563- txtContent . Text = text == null ? "" : text . TrimEnd ( ) . TrimEnd ( Environment . NewLine ) ;
563+ text = text == null ? "" : text . TrimEnd ( ) . TrimEnd ( Environment . NewLine ) ;
564+ txtContent . Text = text ;
564565 txtContent . ScrollTextToEnd ( ) ;
565566 AddTextToList ( text ) ;
566567
Original file line number Diff line number Diff line change 3131// You can specify all the values or you can default the Build and Revision Numbers
3232// by using the '*' as shown below:
3333// [assembly: AssemblyVersion("1.0.*")]
34- [ assembly: AssemblyVersion ( "1.12 .0" ) ]
35- [ assembly: AssemblyFileVersion ( "1.12 .0" ) ]
34+ [ assembly: AssemblyVersion ( "1.13 .0" ) ]
35+ [ assembly: AssemblyFileVersion ( "1.13 .0" ) ]
You can’t perform that action at this time.
0 commit comments