(self, context)
| 60 | return True |
| 61 | |
| 62 | def draw(self, context): |
| 63 | ko = search.active_key_object(context) |
| 64 | layout = self.layout |
| 65 | |
| 66 | row = layout.row() |
| 67 | row.prop(ko, "rotation_euler", text="Rotation") |
| 68 | row = layout.row() |
| 69 | row.prop(ko.data, "extrude", text="Extrude") |
| 70 | row.prop(ko.data, "bevel_depth", text="Bevel") |
| 71 | row = layout.row() |
| 72 | row.prop(ko.data, "fill_mode", text="Fill Mode") |
| 73 | |
| 74 | |
| 75 |
nothing calls this directly
no outgoing calls
no test coverage detected