Replace hardspaces with spaces in the ToolTip.

This commit is contained in:
Rich 2014-04-02 15:12:16 +00:00
parent 4423d7ddf3
commit 79175138f2

View File

@ -2126,7 +2126,7 @@ namespace VEPROMS.CSLA.Library
toolTip += string.Format("\r\n(Library Document - {0})\r\n", myDocument.LibTitle); toolTip += string.Format("\r\n(Library Document - {0})\r\n", myDocument.LibTitle);
toolTip += myDocument.LibraryDocumentUsage; toolTip += myDocument.LibraryDocumentUsage;
} }
return toolTip; return toolTip.Replace('\xA0', ' ');//Replace Hardspace with a space
} }
} }
public string TabTitle public string TabTitle