Currently using the `macosx` backend, the doc icon is what I assume is the default python application icon: <img width="112" alt="Screenshot 2019-07-18 at 17 28 02" src="https://user-images.githubusercontent.com/6197628/61474852-6e6ca500-a981-11e9-8ed4-7807cf6c1fb2.png"> I'm presuming there's a way to set this to be the Matplotlib icon. ```python import matplotlib matplotlib.use('macosx') import matplotlib.pyplot as plt fig, ax = plt.subplots() plt.show() ``` Python 3.7 Matplotlib master branch