From 407b57a0b2aff3c273785bae3fa7c4848cf66ed4 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Tue, 27 Dec 2011 21:08:39 +0300 Subject: [PATCH] Fixed hotkeys in 'Search' dialog in mcviewer. Signed-off-by: Andrew Borodin --- src/viewer/dialogs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/viewer/dialogs.c b/src/viewer/dialogs.c index 0742b7a0a..0d697c8b4 100644 --- a/src/viewer/dialogs.c +++ b/src/viewer/dialogs.c @@ -92,14 +92,14 @@ mcview_dialog_search (mcview_t * view) QUICK_BUTTON (2, 10, SEARCH_DLG_HEIGHT - 3, SEARCH_DLG_HEIGHT, N_("&OK"), B_ENTER, NULL), #ifdef HAVE_CHARSET QUICK_CHECKBOX (SEARCH_DLG_WIDTH / 2 + 3, SEARCH_DLG_WIDTH, 8, SEARCH_DLG_HEIGHT, - N_("All charsets"), &mcview_search_options.all_codepages), + N_("&All charsets"), &mcview_search_options.all_codepages), #endif QUICK_CHECKBOX (SEARCH_DLG_WIDTH / 2 + 3, SEARCH_DLG_WIDTH, 7, SEARCH_DLG_HEIGHT, N_("&Whole words"), &mcview_search_options.whole_words), QUICK_CHECKBOX (SEARCH_DLG_WIDTH / 2 + 3, SEARCH_DLG_WIDTH, 6, SEARCH_DLG_HEIGHT, N_("&Backwards"), &mcview_search_options.backwards), QUICK_CHECKBOX (SEARCH_DLG_WIDTH / 2 + 3, SEARCH_DLG_WIDTH, 5, SEARCH_DLG_HEIGHT, - N_("Case &sensitive"), &mcview_search_options.case_sens), + N_("Cas&e sensitive"), &mcview_search_options.case_sens), QUICK_RADIO (3, SEARCH_DLG_WIDTH, 5, SEARCH_DLG_HEIGHT, num_of_types, (const char **) list_of_types, (int *) &mcview_search_options.type), -- 2.11.4.GIT