Update state for menu item at index.
(self, menu, index, state)
| 483 | menuitem.entryconfig(index, label=label) |
| 484 | |
| 485 | def update_menu_state(self, menu, index, state): |
| 486 | "Update state for menu item at index." |
| 487 | menuitem = self.menudict[menu] |
| 488 | menuitem.entryconfig(index, state=state) |
| 489 | |
| 490 | def handle_yview(self, event, *args): |
| 491 | "Handle scrollbar." |
no outgoing calls
no test coverage detected