Load a wx.Bitmap from a file in the "images" directory of the Matplotlib data.
(filename)
| 1034 | |
| 1035 | |
| 1036 | def _load_bitmap(filename): |
| 1037 | """ |
| 1038 | Load a wx.Bitmap from a file in the "images" directory of the Matplotlib |
| 1039 | data. |
| 1040 | """ |
| 1041 | return wx.Bitmap(str(cbook._get_data_path('images', filename))) |
| 1042 | |
| 1043 | |
| 1044 | def _set_frame_icon(frame): |
no outgoing calls
no test coverage detected
searching dependent graphs…