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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-03-31 11:09:10 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-03-31 16:21:59 +0300
commit6cf8e325dba9c5afa1cb2a7cbf62159dd049e9b6 (patch)
tree44821c01b1def51c941f1498915cd22445093849
parent7520b428053fd0362285e0b91a72e8e4f720af5a (diff)
Fix T44127: py translations freeing func not being called when space_bar_menu addon is enabled.v2.74
That's great mystery - that addon was doing 'bad' `from bpy import *`. Removing that fixes the issue, but... :/
-rw-r--r--space_view3d_spacebar_menu.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/space_view3d_spacebar_menu.py b/space_view3d_spacebar_menu.py
index 04b14f08..53e9ade4 100644
--- a/space_view3d_spacebar_menu.py
+++ b/space_view3d_spacebar_menu.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "Dynamic Spacebar Menu",
"author": "meta-androcto, JayDez, sim88, sam",
- "version": (1, 7, 3),
+ "version": (1, 7, 4),
"blender": (2, 72, 0),
"location": "View3D > Spacebar for menu then 's' key for Search",
"description": "Context Sensitive Spacebar Menu",
@@ -32,7 +32,6 @@ bl_info = {
}
import bpy
-from bpy import *
# Dynamic Menu
class VIEW3D_MT_Space_Dynamic_Menu(bpy.types.Menu):