(options: LGraphButtonOptions)
| 1818 | } |
| 1819 | |
| 1820 | addTitleButton(options: LGraphButtonOptions): LGraphButton { |
| 1821 | this.title_buttons ||= [] |
| 1822 | const button = new LGraphButton(options) |
| 1823 | this.title_buttons.push(button) |
| 1824 | return button |
| 1825 | } |
| 1826 | |
| 1827 | onTitleButtonClick(button: LGraphButton, canvas: LGraphCanvas): void { |
| 1828 | // Dispatch event for button click |
no outgoing calls
no test coverage detected