From 9440869ee6c781a32ced3c41c872ce3176ac7dae Mon Sep 17 00:00:00 2001 From: Kathy Date: Mon, 15 Jun 2020 14:54:29 +0000 Subject: [PATCH] C2020-015: Improve find/replace end dialog messages --- PROMS/Volian.Controls.Library/FindReplace.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PROMS/Volian.Controls.Library/FindReplace.cs b/PROMS/Volian.Controls.Library/FindReplace.cs index 5ecfc0b2..502f8f62 100644 --- a/PROMS/Volian.Controls.Library/FindReplace.cs +++ b/PROMS/Volian.Controls.Library/FindReplace.cs @@ -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;