prompt-toolkit / python-prompt-toolkit

Library for building powerful interactive command line applications in Python
https://python-prompt-toolkit.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
9.28k stars 715 forks source link

Copy over show_cursor attribute from screen #1693

Closed rhlee closed 1 year ago

rhlee commented 1 year ago

If a ScrollablePane instance does not have focus, it will show the cursor of the currently focused window even if that window has show_cursor set to False. This is because the virtual screen does not copy over the show_cursor attribute from screen to the virtual screen.

jonathanslenders commented 1 year ago

Thanks!