We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I declare a binding in a widget, it doesn't appear on the new footer until I move my mouse:
In the video above, the footer is empty. When the mouse cursor moves, it populates.
MRE:
from textual.app import App, ComposeResult from textual.binding import Binding from textual.widgets import Footer, Input class MyInput(Input): BINDINGS = [Binding("escape", "app.quit", "Exit Elia", key_display="esc")] class FooterDelay(App[None]): def compose(self) -> ComposeResult: yield MyInput() yield Footer() app = FooterDelay() if __name__ == "__main__": app.run()
The text was updated successfully, but these errors were encountered:
Looks like the bad commit is 135fab6 - presumably the self.mouse_over check?
self.mouse_over
If you comment out the lines below on main, this example app works as expected but obviously multiple tests then fail.
textual/src/textual/app.py
Lines 2277 to 2278 in 6034065
Sorry, something went wrong.
Don't forget to star the repository!
Follow @textualizeio for Textual updates.
Successfully merging a pull request may close this issue.
If I declare a binding in a widget, it doesn't appear on the new footer until I move my mouse:
footer-issue-textual.mov
In the video above, the footer is empty. When the mouse cursor moves, it populates.
MRE:
The text was updated successfully, but these errors were encountered: