From 27a0b979145959015797299fb3023042ec88d051 Mon Sep 17 00:00:00 2001 From: masonasons Date: Thu, 17 Feb 2022 16:03:46 -0600 Subject: [PATCH] Change accessibility string to say indexes like 1 of 4 rather than 1 out of 4 to match with screen reader standard behavior. --- ExplorerPatcher/GUI.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ExplorerPatcher/GUI.c b/ExplorerPatcher/GUI.c index 23e0b35..1f05037 100644 --- a/ExplorerPatcher/GUI.c +++ b/ExplorerPatcher/GUI.c @@ -91,7 +91,7 @@ void PlayHelpMessage(GUI* _this) wszAccText, 1000, L"Welcome to ExplorerPatcher. " - L"Selected page is: %s: %d out of %d. " + L"Selected page is: %s: %d of %d. " L"To switch pages, press the Left or Right arrow keys or press a number (%d to %d). " L"To select an item, press the Up or Down arrow keys or Shift+Tab and Tab. " L"To interact with the selected item, press Space or Return. " @@ -2893,7 +2893,7 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt) swprintf_s( wszAccText, 100, - L"Selected page: %s: %d out of %d.", + L"Selected page: %s: %d of %d.", _this->sectionNames[_this->section], _this->section + 1, max_section + 1