Skip to content

Commit

Permalink
help fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
nortikin committed Sep 28, 2017
1 parent cf908b7 commit a0fe08c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/404_custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<body>

<div id="vh" class="box">
Sorry! It appears that <span id="label">overlap_polygons</span> doesn't have a document associated with it.
Sorry! It appears that <span id="label">Color in</span> doesn't have a document associated with it.
<br/><br/>
Please contact us on the <a href="https://github.com/nortikin/sverchok/issues">GitHub issue tracker</a> or any of the following social sites:
<a href="https://plus.google.com/communities/113245231013159497850">G+</a>, <a href="http://vk.com/public35076122">VK</a> or <a href="http://www.blenderartists.org/forum/showthread.php?272679">Blenderartists</a>.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
>
> Failing to follow these points will break the node category parser.
## Generators
## Generator
SvLineNodeMK2
SvPlaneNodeMK2
SvNGonNode
Expand Down
2 changes: 1 addition & 1 deletion menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def juggle_and_join(node_cats):

# add extended gens to Gens menu
gen_ext = node_cats.pop("Generators Extended")
node_cats["Generators"].extend(gen_ext)
node_cats["Generator"].extend(gen_ext)

return node_cats

Expand Down
4 changes: 4 additions & 0 deletions ui/development.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ def execute(self, context):

string_dir = remapper.get(n.bl_idname)
filename = n.__module__.split('.')[-1]
if filename in ('mask','mask_convert','mask_join'):
string_dir = 'list_masks'
elif filename in ('modifier'):
string_dir = 'list_mutators'
help_url = string_dir + '/' + filename

# first let's find if this is a valid doc file, by inspecting locally for the rst file.
Expand Down
2 changes: 1 addition & 1 deletion ui/nodeview_space_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def draw(self, context):


class NODEVIEW_MT_AddGenerators(bpy.types.Menu):
bl_label = "Generators"
bl_label = "Generator"

def draw(self, context):
layout = self.layout
Expand Down

0 comments on commit a0fe08c

Please sign in to comment.