(label, width=0, enabled=True)
| 149 | #---------------------------------------------------------------------------- |
| 150 | |
| 151 | def drag_button(label, width=0, enabled=True): |
| 152 | clicked = button(label, width=width, enabled=enabled) |
| 153 | dragging, dx, dy = drag_previous_control(enabled=enabled) |
| 154 | return clicked, dragging, dx, dy |
| 155 | |
| 156 | #---------------------------------------------------------------------------- |
| 157 |
nothing calls this directly
no test coverage detected