From db806ebb64bb03d863bc7dbecdabaf3dc3aa004c Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 22 Jan 2016 00:27:23 +0100 Subject: [PATCH] Remove "Undo" and "Redo" from the "Edit" menu They will be implemented in another editor, with a text widget supporting them natively instead. --- src/editor.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/editor.c b/src/editor.c index 0d9f92c..04a3914 100644 --- a/src/editor.c +++ b/src/editor.c @@ -163,11 +163,6 @@ static const DesktopMenu _editor_menu_file_filter[] = static const DesktopMenu _editor_menu_edit[] = { - /* FIXME implement undo and redo */ - { N_("_Undo"), NULL, GTK_STOCK_UNDO, GDK_CONTROL_MASK, - GDK_KEY_Z }, - { N_("_Redo"), NULL, GTK_STOCK_REDO, GDK_CONTROL_MASK, GDK_KEY_R }, - { "", NULL, NULL, 0, 0 }, { N_("Cu_t"), G_CALLBACK(on_edit_cut), GTK_STOCK_CUT, GDK_CONTROL_MASK, GDK_KEY_X }, { N_("_Copy"), G_CALLBACK(on_edit_copy), GTK_STOCK_COPY,