Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2004-07-29 06:35:26 +0400
committerMatt Ebb <matt@mke3.net>2004-07-29 06:35:26 +0400
commit891b749d9f2bb5d898a09a573b20006b873d5b35 (patch)
tree3c6e5b314ae7f69401dea0aa118af87a6046d950 /source/blender/src/header_view3d.c
parent91d782ece7e1d4370c097b6aee5ac6ca4158c3bb (diff)
Removed an unnecessary separator in the Object/Mesh->
Scripts menus
Diffstat (limited to 'source/blender/src/header_view3d.c')
-rw-r--r--source/blender/src/header_view3d.c4
1 files changed, 0 insertions, 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);
}