C2020-015: Improve find/replace end dialog messages

This commit is contained in:
Kathy Ruffing 2020-06-15 14:54:29 +00:00
parent 7b53bbc783
commit 9440869ee6

View File

@ -251,10 +251,11 @@ namespace Volian.Controls.Library
{
if (!findingbookmarks)
{
// C2020-015: Improve dialog messaging
if (cbxReverse.Checked)
FlexibleMessageBox.Show(this, "Not Found - From Here to Beginning of Section", "Find/Replace");
FlexibleMessageBox.Show(this, "Nothing found here to beginning of this section", "End of Find/Replace");
else
FlexibleMessageBox.Show(this, "Not Found - From Here to End of Section", "Find/Replace");
FlexibleMessageBox.Show(this, "Nothing found here to end of this section", "End of Find/Replace");
}
FoundIt = false;
return;