# HG changeset patch # User zas_ # Date 1209860474 0 # Node ID 0da87187d5fb2db2c1c6aafdeb5b0d746e0464a4 # Parent fd51eac09ead9ae716f541ab06135d0645e6bda6 Do not show Copy, Move, Rename, Delete, New Folder external commands in the Edit section of contextual menus. diff -r fd51eac09ead -r 0da87187d5fb src/menu.c --- a/src/menu.c Sun May 04 00:16:37 2008 +0000 +++ b/src/menu.c Sun May 04 00:21:14 2008 +0000 @@ -66,7 +66,8 @@ static void add_edit_items(GtkWidget *menu, GCallback func, GtkAccelGroup *accel_grp) { gint i; - for (i = 0; i < GQ_EDITOR_SLOTS; i++) + + for (i = 0; i < GQ_EDITOR_GENERIC_SLOTS; i++) { if (options->editor_command[i] && strlen(options->editor_command[i]) > 0) {