From 891b749d9f2bb5d898a09a573b20006b873d5b35 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 29 Jul 2004 02:35:26 +0000 Subject: [PATCH] Removed an unnecessary separator in the Object/Mesh-> Scripts menus --- source/blender/src/header_view3d.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/blender/src/header_view3d.c b/source/blender/src/header_view3d.c index 15837b77789..739287926e7 100644 --- a/source/blender/src/header_view3d.c +++ b/source/blender/src/header_view3d.c @@ -1648,8 +1648,6 @@ static uiBlock *view3d_edit_object_scriptsmenu(void *arg_unused) block= uiNewBlock(&curarea->uiblocks, "v3d_eobject_pymenu", UI_EMBOSSP, UI_HELV, G.curscreen->mainwin); uiBlockSetButmFunc(block, do_view3d_edit_object_scriptsmenu, NULL); - uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, ""); - for (pym = BPyMenuTable[PYMENU_OBJECT]; pym; pym = pym->next, i++) { uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, pym->name, 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, i, pym->tooltip?pym->tooltip:pym->filename); } @@ -2176,8 +2174,6 @@ static uiBlock *view3d_edit_mesh_scriptsmenu(void *arg_unused) block= uiNewBlock(&curarea->uiblocks, "v3d_emesh_pymenu", UI_EMBOSSP, UI_HELV, G.curscreen->mainwin); uiBlockSetButmFunc(block, do_view3d_edit_mesh_scriptsmenu, NULL); - uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, ""); - for (pym = BPyMenuTable[PYMENU_MESH]; pym; pym = pym->next, i++) { uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, pym->name, 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, i, pym->tooltip?pym->tooltip:pym->filename); }