| 224 | |
| 225 | |
| 226 | class ST2InstallPanel(bpy.types.Panel): |
| 227 | bl_label = "ST2 Setup" |
| 228 | bl_idname = "ST2_PT_0_INSTALLPANEL" |
| 229 | bl_space_type = "VIEW_3D" |
| 230 | bl_region_type = "UI" |
| 231 | bl_category = "ST2" |
| 232 | |
| 233 | @classmethod |
| 234 | def poll(cls, context): |
| 235 | return C is None |
| 236 | |
| 237 | def draw(self, context): |
| 238 | return editor_needs_coldtype(self.layout, coldtype_status) |
| 239 | |
| 240 | |
| 241 | classes = [ |
nothing calls this directly
no outgoing calls
no test coverage detected