(event)
| 2386 | # Track changes to the canvas and frame width and sync them, |
| 2387 | # also updating the scrollbar. |
| 2388 | def _configure_interior(event): |
| 2389 | # Update the scrollbars to match the size of the inner frame. |
| 2390 | size = (interior.winfo_reqwidth(), interior.winfo_reqheight()) |
| 2391 | canvas.config(scrollregion="0 0 %s %s" % size) |
| 2392 | interior.bind('<Configure>', _configure_interior) |
| 2393 | |
| 2394 | def _configure_canvas(event): |
nothing calls this directly
no test coverage detected