Skip to content

Commit a2148b2

Browse files
committed
Version 1.13.0
1 parent 07a3f5c commit a2148b2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

WindowTextExtractor/Forms/MainForm.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

WindowTextExtractor/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
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")]

0 commit comments

Comments
 (0)