I would like to have some text in a pyplot figure, and be able to zoom in on it without it changing scale. See below example of the plot, what I'd like to happen, and what actually happens.
Code reproducing the error:
import matplotlib.pyplot as plt
plt.plot((0, 0, 1, 1, 0), (1, 0, 0, 1, 1))
plt.text(0, 0, 'Test', fontsize=150)
plt.show()