I have installed latest orgmode (release_9.5.3-480-g0b07b3), after run C-c C-c to execute a babel code, the results block has been folded by default. How can I config it to expand the results block by default after execution?
I use below drawer to show image since I want to show text output and image output at the same time.
#+begin_src python :results output drawer
import sys
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
plt.plot(x, y)
pngname = "./hello.png"
plt.savefig(pngname)
print("[[%s]]"%pngname)
#+end_src
This example works fine before, but latest org version will fold the results after execution! Looks like the drawer behavior changed.