Load motions for a specific group.
(self, group_name)
| 640 | self._load_motion_group(groups[0]) |
| 641 | |
| 642 | def _load_motion_group(self, group_name): |
| 643 | """Load motions for a specific group.""" |
| 644 | if group_name in self._motion_data: |
| 645 | motions = self._motion_data[group_name] |
| 646 | motion_list = Gtk.StringList.new(motions) |
| 647 | self.motion_selector.set_model(motion_list) |
| 648 | |
| 649 | def _on_motion_group_selected(self, row, pspec): |
| 650 | """Handle motion group selection change.""" |
no outgoing calls
no test coverage detected