Updates for issues 20 and 24

This commit is contained in:
Michael J. Seiferling
2015-12-08 10:10:44 -06:00
parent f22bcb91a9
commit 87326981dd
11 changed files with 69 additions and 114 deletions
+1 -1
View File
@@ -32,7 +32,7 @@
ReadOnly Property CroppedName As String
Get
If Name.Length > 40 Then
Return sName.Substring(0, 41) & "..."
Return sName.Substring(0, 41).Trim & "..."
Else
Return sName
End If