(self, button_id, **kwargs)
| 194 | @toggled: is the button toggled, only valid if type is "toggle" (optional) |
| 195 | """ |
| 196 | def addButton(self, button_id, **kwargs): |
| 197 | buttons = self.currentReply.setdefault("addButton", []) |
| 198 | info = kwargs |
| 199 | info["id"] = button_id |
| 200 | buttons.append(info) |
| 201 | |
| 202 | def removeButton(self, button_id): |
| 203 | buttons = self.currentReply.setdefault("removeButton", []) |
no test coverage detected