(frame)
| 1042 | |
| 1043 | |
| 1044 | def _set_frame_icon(frame): |
| 1045 | bundle = wx.IconBundle() |
| 1046 | for image in ('matplotlib.png', 'matplotlib_large.png'): |
| 1047 | icon = wx.Icon(_load_bitmap(image)) |
| 1048 | if not icon.IsOk(): |
| 1049 | return |
| 1050 | bundle.AddIcon(icon) |
| 1051 | frame.SetIcons(bundle) |
| 1052 | |
| 1053 | |
| 1054 | class NavigationToolbar2Wx(NavigationToolbar2, wx.ToolBar): |
no test coverage detected
searching dependent graphs…