diff --git a/gnome/ChangeLog b/gnome/ChangeLog index 132da5be3..e54febe82 100644 --- a/gnome/ChangeLog +++ b/gnome/ChangeLog @@ -1,3 +1,7 @@ +1998-09-25 Miguel de Icaza + + * gscreen.c: Hook to invoke the editor from the context menu. + Fri Sep 18 13:51:16 1998 Pavel Roskin * Makefile.in: Consequent "make" should not rebuild gmc every time diff --git a/gnome/gscreen.c b/gnome/gscreen.c index 3084d9837..d8798605b 100644 --- a/gnome/gscreen.c +++ b/gnome/gscreen.c @@ -526,6 +526,7 @@ static struct { { N_("Open with"), F_PANEL | F_ALL, (context_menu_callback) panel_action_open_with }, { N_("View"), F_PANEL | F_NOTDIR, (context_menu_callback) panel_action_view }, { N_("View unfiltered"), F_PANEL | F_NOTDIR, (context_menu_callback) panel_action_view_unfiltered }, + { N_("Edit"), F_PANEL | F_NOTDIR, (context_menu_callback) panel_action_edit }, { "", 0, NULL }, { N_("Link..."), F_PANEL | F_REGULAR | F_SINGLE, (context_menu_callback) link_cmd }, { N_("Symlink..."), F_PANEL | F_SINGLE, (context_menu_callback) symlink_cmd },