Skip to content

Commit e6758d8

Browse files
committed
Fixed broken number separators in the console for those who use spaces as separator characters (e.g. 1 000 000 vs. 1,000,000).
1 parent 821fd27 commit e6758d8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

WindowsApp1/Compact.vb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Imports System.IO
22
Imports System.Runtime.InteropServices
3+
Imports System.Text
34
Imports System.Text.RegularExpressions
45
Imports Ookii.Dialogs 'Uses Ookii Dialogs for the non-archaic filebrowser dialog. http://www.ookii.org/Software/Dialogs
56

@@ -169,7 +170,8 @@ Public Class Compact
169170
Dim serverOutDelegate As New AppendOutputTextDelegate(AddressOf AppendOutputText)
170171
Me.Invoke(serverOutDelegate, text)
171172
Else
172-
conOut.AppendText(text)
173+
174+
conOut.AppendText(text.Replace("ÿ", " "))
173175
conOut.Select(conOut.TextLength, 1)
174176
conOut.ScrollToCaret()
175177
End If

WindowsApp1/My Project/AssemblyInfo.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
3131
' by using the '*' as shown below:
3232
' <Assembly: AssemblyVersion("1.0.*")>
3333

34-
<Assembly: AssemblyVersion("1.1.0.0")>
35-
<Assembly: AssemblyFileVersion("1.0.0.0")>
34+
<Assembly: AssemblyVersion("1.1.1.0")>
35+
<Assembly: AssemblyFileVersion("1.1.1.0")>

0 commit comments

Comments
 (0)