From 85b0997d900266cd444431df36ecd64b07efbea0 Mon Sep 17 00:00:00 2001 From: Juho Vepsalainen Date: Thu, 10 May 2007 05:44:44 +0000 Subject: [PATCH] Fixed the hotkey of "Hide Selected" found in the menu activated by space. --- source/blender/src/toolbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c index be3614cd6b5..026fca8d7d2 100644 --- a/source/blender/src/toolbox.c +++ b/source/blender/src/toolbox.c @@ -1129,7 +1129,7 @@ static TBitem tb_mesh[]= { static TBitem tb_curve_hide[]= { { 0, "Show Hidden|Alt H", 10, NULL}, -{ 0, "Hide Selected|Ctrl H", 11, NULL}, +{ 0, "Hide Selected|Alt Ctrl H", 11, NULL}, { -1, "", 0, do_view3d_edit_curve_showhidemenu}};