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... :/
This commit is contained in:
Bastien Montagne 2015-03-31 10:09:10 +02:00 committed by Sergey Sharybin
parent 7520b42805
commit 6cf8e325db
1 changed files with 1 additions and 2 deletions

View File

@ -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):