Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix progress cursor visibility #3691

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

shyam-ramani
Copy link

Fix cursor visibility issues when Progress/Live displays are interrupted

Problem

When a Rich Progress or Live display is interrupted (e.g., by a Ctrl+C or an unhandled exception), the cursor sometimes remains hidden in the terminal, making it difficult for users to type or interact with the console after the program ends.

Root Cause

The Progress.stop() and Live.stop() methods handle cleaning up the console state, including restoring cursor visibility, but they lack robust exception handling. If an exception occurs during the cleanup process, the code to restore cursor visibility might not execute.

Solution

This PR implements the following improvements:

  1. Added try/except handlers in both Progress.stop() and Live.stop() methods to ensure cursor visibility is restored even if an exception occurs during cleanup.

  2. Added signal handlers (SIGINT) to catch Ctrl+C interruptions and ensure cursor visibility is restored before the program exits.

  3. Added an atexit handler as an additional safety measure to ensure cursor visibility is restored when the program exits.

  4. Added platform checks to avoid setting up signal handlers on platforms that don't support them (e.g., Windows).

Benefits

  • Users will no longer experience "invisible cursor" issues when interrupting a Progress or Live display with Ctrl+C.
  • More robust error handling ensures cursor visibility even in edge cases.
  • Maintains backward compatibility with all existing code.

Testing

A test script (test_cursor_visibility.py) is included to demonstrate the fix. The script shows a progress bar that can be interrupted with Ctrl+C, and verifies that the cursor remains visible after interruption.

Notes

This fix builds on the foundation of existing cursor management in Rich, adding additional safeguards to handle edge cases without changing the core functionality.

Copy link
Contributor

@TomJGooding TomJGooding left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't waste the time of open source maintainers with this LLM-generated slop.

Hopefully you realise by now that all your pull requests will be rejected. This PR is probably the most egregious as you didn't even notice to remove the create_pr.sh or pull_request.md files.

I'm not sure what your motivation is here, but I'm assuming you're new to coding. Using LLMs to generate pull requests may seem like an easy way to get started, but it's not a substitute for real learning and experience.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants