C2024-025 Remove the tall box characters from the search results.

This commit is contained in:
2024-11-07 08:26:26 -05:00
parent c508255ab3
commit b972e40a28
2 changed files with 40 additions and 6 deletions

View File

@@ -66,7 +66,7 @@ namespace Volian.Controls.Library
private Color saveGrpPanSearchResults;
private ItemInfoList _SearchResults;
private string _DisplayMember = "SearchPath";
private string _DisplayMember = "SearchPath_clean";
private bool _OpenDocFromSearch;
private ROFSTLookup _MyROFSTLookup;
private bool _LoadingList = false;
@@ -1745,7 +1745,7 @@ namespace Volian.Controls.Library
}
// B2021-076: Proms search results are not presented in order when printed to PDF
if (_DisplayMember == "SearchPath" || _DisplayMember == "ShortSearchPath")
if (_DisplayMember == "SearchPath_clean" || _DisplayMember == "ShortSearchPath_clean")
{
cbSorted.Checked = false;
cbSorted.Enabled = false;
@@ -1880,10 +1880,10 @@ namespace Volian.Controls.Library
switch (cmbResultsStyle.Text)
{
case "Document Path":
_DisplayMember = "SearchDVPath";
_DisplayMember = "SearchDVPath_clean";
break;
case "Step Path":
_DisplayMember = "ShortSearchPath";
_DisplayMember = "ShortSearchPath_clean";
break;
case "Annotation Text":
_DisplayMember = "SearchAnnotationText";
@@ -1892,7 +1892,7 @@ namespace Volian.Controls.Library
_DisplayMember = "DisplayText";
break;
default:
_DisplayMember = "SearchPath";
_DisplayMember = "SearchPath_clean";
break;
}
DisplayResults();