From 6cf8e325dba9c5afa1cb2a7cbf62159dd049e9b6 Mon Sep 17 00:00:00 2001 From: Bastien Montagne <montagne29@wanadoo.fr> Date: Tue, 31 Mar 2015 10:09:10 +0200 Subject: [PATCH] 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... :/ --- space_view3d_spacebar_menu.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/space_view3d_spacebar_menu.py b/space_view3d_spacebar_menu.py index 04b14f083..53e9ade46 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): -- GitLab