F2024-048 - Robinson requested that we use a hard space in the page number part of transitions that include page numbers. Made this change generic because it doen't make sence to break a page number on to the next line all by itstelf.

This commit is contained in:
John Jenko 2024-03-27 16:12:00 -04:00
parent 95a39e5a12
commit 389a3013b5

View File

@ -1227,7 +1227,9 @@ namespace VEPROMS.CSLA.Library
case 0:
break;
default:
tb.Append(string.Format(" (Page {0})", tb._ToItem.PageNumber + 1));
//F2024-048 use a hard space (\\u160;) instead of a space in the page number text
// to keep that text together on the page
tb.Append(string.Format(" (Page{0}{1})", "\\u160;", tb._ToItem.PageNumber + 1));
break;
}
}