From 28ded77cd146cb4a0a1dfaddca487bde9b9d5c06 Mon Sep 17 00:00:00 2001 From: NightMachinery Date: Tue, 16 Jan 2024 20:11:26 +0330 Subject: [PATCH] fixed typo in the doc of previous_page_smart --- pdf_viewer/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdf_viewer/input.cpp b/pdf_viewer/input.cpp index d8941a0cb..4010a4b75 100644 --- a/pdf_viewer/input.cpp +++ b/pdf_viewer/input.cpp @@ -6348,7 +6348,7 @@ CommandManager::CommandManager(ConfigManager* config_manager) { command_human_readable_names["next_page"] = "Go to next page"; command_human_readable_names["previous_page"] = "Go to previous page"; command_human_readable_names["next_page_smart"] = "Go to next page (tries to go to the next column on two-column pages)"; - command_human_readable_names["previous_page"] = "Go to previous page (tries to go to the previous column on two-column pages)"; + command_human_readable_names["previous_page_smart"] = "Go to previous page (tries to go to the previous column on two-column pages)"; command_human_readable_names["open_document"] = "Open documents using native file explorer"; command_human_readable_names["add_bookmark"] = "Add an invisible bookmark in the current location"; command_human_readable_names["add_marked_bookmark"] = "Add a bookmark in the selected location";