[Bf-extensions-cvs] [5d4cd5a] master: Fix T44127: py translations freeing func not being called when space_bar_menu addon is enabled.

Bastien Montagne noreply at git.blender.org
Tue Mar 31 10:11:02 CEST 2015


Commit: 5d4cd5ae50cde918acd117998277b7ed46dd3b09
Author: Bastien Montagne
Date:   Tue Mar 31 10:09:10 2015 +0200
Branches: master
https://developer.blender.org/rBA5d4cd5ae50cde918acd117998277b7ed46dd3b09

Fix T44127: py translations freeing func not being called when space_bar_menu addon is enabled.

That's great mystery - that addon was doing 'bad' `from bpy import *`.
Removing that fixes the issue, but... :/

===================================================================

M	space_view3d_spacebar_menu.py

===================================================================

diff --git a/space_view3d_spacebar_menu.py b/space_view3d_spacebar_menu.py
index 04b14f0..53e9ade 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):



More information about the Bf-extensions-cvs mailing list