Renamed gui.py to texture_browser.py

Also discovered double-unregister of a class, so that fixed an old bug.
Removed the workaround for that bug.
This commit is contained in:
2016-07-15 14:27:42 +02:00
parent 388a059400
commit 9a0873eea4
3 changed files with 7 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ import bpy
from bpy.types import AddonPreferences, Operator, WindowManager, Scene, PropertyGroup
from bpy.props import StringProperty, EnumProperty, PointerProperty, BoolProperty
from . import pillar, gui
from . import pillar
PILLAR_SERVER_URL = 'https://cloudapi.blender.org/'
# PILLAR_SERVER_URL = 'http://localhost:5000/'
@@ -354,8 +354,6 @@ def register():
def unregister():
unload_custom_icons()
gui.unregister()
bpy.utils.unregister_class(PillarCredentialsUpdate)
bpy.utils.unregister_class(BlenderCloudPreferences)
bpy.utils.unregister_class(SyncStatusProperties)