From c330f5420d37d10e62122de46d0537af4d953f0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Fri, 16 Dec 2005 15:56:10 +0000 Subject: [PATCH] changed "build with make" keyboard shortcut from CTRL+F9 to Shift+F9 to avoid problems with window managers key bindings (thanks to Nick Treleaven for reporting) git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@56 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- src/dialogs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs.c b/src/dialogs.c index f60469ed3..d3f749c9d 100644 --- a/src/dialogs.c +++ b/src/dialogs.c @@ -497,7 +497,7 @@ void dialogs_create_build_menu(void) gtk_tooltips_set_tip(tooltips, item, _("Builds the current file with the " "make tool and the default target"), NULL); gtk_widget_add_accelerator(item, "activate", accel_group, GDK_F9, - (GdkModifierType) GDK_CONTROL_MASK, GTK_ACCEL_VISIBLE); + (GdkModifierType) GDK_SHIFT_MASK, GTK_ACCEL_VISIBLE); g_signal_connect((gpointer) item, "activate", G_CALLBACK (on_build_make_activate), GINT_TO_POINTER(0));