disable when in edit mode.

This commit is contained in:
Kalle-Samuli Riihikoski 2018-12-10 02:13:49 +02:00
parent cd22ea9805
commit abbd6b0a89
1 changed files with 11 additions and 0 deletions

View File

@ -857,6 +857,13 @@ class SCENE_PT_Main(bpy.types.Panel):
bl_region_type = "UI"
bl_category = 'View'
@classmethod
def poll(cls, context):
if bpy.context.mode == 'OBJECT':
return True
else:
return False
def draw(self, context):
layout = self.layout
coat = bpy.coat3D
@ -874,6 +881,7 @@ class SCENE_PT_Main(bpy.types.Panel):
row.operator("update_exchange_folder.pilgway_3d_coat", text="Apply folder")
else:
#Here you add your GUI
row = layout.row()
row.prop(coat3D,"type",text = "")
@ -885,6 +893,9 @@ class SCENE_PT_Main(bpy.types.Panel):
col = flow.column()
col.operator("import_applink.pilgway_3d_coat", text="Update")
class ObjectButtonsPanel():
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'