Development #287

Merged
djankowski merged 9 commits from Development into master 2024-04-04 11:36:56 -04:00
9 changed files with 12 additions and 4 deletions
Showing only changes of commit 6c733d54fc - Show all commits

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;
}
}