Applies the specified properties to the widget. `properties` is a dictionary with key value pairs corresponding to the properties to be applied to the widget.
(widget, properties={})
| 1298 | |
| 1299 | |
| 1300 | def _apply_properties(widget, properties={}): |
| 1301 | """Applies the specified properties to the widget. |
| 1302 | |
| 1303 | `properties` is a dictionary with key value pairs corresponding |
| 1304 | to the properties to be applied to the widget. |
| 1305 | """ |
| 1306 | with widget.hold_sync(): |
| 1307 | for key, value in properties.items(): |
| 1308 | setattr(widget, key, value) |
| 1309 | |
| 1310 | |
| 1311 | def _get_line_styles(marker_str): |
no outgoing calls
no test coverage detected
searching dependent graphs…