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
This commit is contained in:
Enrico Tröger 2005-12-16 15:56:10 +00:00
parent 3a2d560fdc
commit c330f5420d

View File

@ -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));