Bind mouse wheel scroll events to this scrollable frame.
(self)
| 223 | self.items.append(item) |
| 224 | |
| 225 | def _bind_scroll_events(self) -> None: |
| 226 | """Bind mouse wheel scroll events to this scrollable frame.""" |
| 227 | self._bind_scroll_to_widget(self) |
| 228 | |
| 229 | def _bind_scroll_to_widget(self, widget) -> None: |
| 230 | """Bind scroll events to a specific widget.""" |
no test coverage detected