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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2017-01-15 14:15:05 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2017-01-15 14:15:14 +0300
commit3c5875018e4cf9d184f2e49f6dafd0bd108ddf43 (patch)
tree8a16bd272af46143eba968c9b99ab3b95c397a03 /space_view3d_math_vis
parent8f2efdb7590aac77214f3bec103f3ec5c504ac38 (diff)
Changed location string to match with the recent location changes. Renamed the Panel for more clarity
Diffstat (limited to 'space_view3d_math_vis')
-rw-r--r--space_view3d_math_vis/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/space_view3d_math_vis/__init__.py b/space_view3d_math_vis/__init__.py
index 7fad3359..d961b899 100644
--- a/space_view3d_math_vis/__init__.py
+++ b/space_view3d_math_vis/__init__.py
@@ -23,7 +23,7 @@ bl_info = {
"author": "Campbell Barton",
"version": (0, 2),
"blender": (2, 57, 0),
- "location": "View3D > Tool Shelf or Console",
+ "location": "Properties: Scene > Math Vis Console and Python Console: Menu",
"description": "Display console defined mathutils variables in the 3D view",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
"Scripts/3D_interaction/Math_Viz",
@@ -47,7 +47,7 @@ class PanelConsoleVars(bpy.types.Panel):
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'
bl_context = 'scene'
- bl_label = "Console Vars"
+ bl_label = "Math Vis Console"
bl_idname = "mathvis.panel_console_vars"
bl_category = "Math Vis"
bl_options = {'DEFAULT_CLOSED'}