From 647bfd276083049847ac054a3077671200d1bc90 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Tue, 11 Jun 2024 10:47:34 +0100 Subject: [PATCH] Use F12 for the minimap F10 is used for sorting in one of the plugins. Fixes https://github.com/linuxmint/xed/issues/645 --- xed/resources/ui/xed-shortcuts.ui | 2 +- xed/xed-ui.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xed/resources/ui/xed-shortcuts.ui b/xed/resources/ui/xed-shortcuts.ui index 4e0c5af..0c1e8fe 100644 --- a/xed/resources/ui/xed-shortcuts.ui +++ b/xed/resources/ui/xed-shortcuts.ui @@ -105,7 +105,7 @@ 1 - F10 + F12 Show overview map diff --git a/xed/xed-ui.h b/xed/xed-ui.h index 010e57f..c76d8a9 100644 --- a/xed/xed-ui.h +++ b/xed/xed-ui.h @@ -172,7 +172,7 @@ static const GtkToggleActionEntry xed_always_sensitive_toggle_menu_entries[] = { "ViewWordWrap", NULL, N_("_Word wrap"), "R", N_("Set word wrap for the current document"), G_CALLBACK (_xed_cmd_view_toggle_word_wrap), FALSE }, - { "ViewOverviewMap", NULL, N_("_Overview Map"), "F10", + { "ViewOverviewMap", NULL, N_("_Overview Map"), "F12", N_("Show or hide the overview map for the current view"), G_CALLBACK (_xed_cmd_view_toggle_overview_map), FALSE } };