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 you have bindings which use the keys up or down, they don't appear in the footer.
up
down
Example:
from textual.app import App, ComposeResult from textual.binding import Binding from textual.widgets import Footer class Example(App): BINDINGS = [ Binding("up", description="Up", action="up"), Binding("down", description="Down", action="down", priority=True), ] def compose(self) -> ComposeResult: yield Footer() app = Example() if __name__ == '__main__': app.run()
When you run the app, the Footer widget contains no content.
Footer
The text was updated successfully, but these errors were encountered:
Suspect this is due to those keys being bound in Widget, with show=False.
show=False
What happens if you set priority=True on those bindings?
priority=True
Sorry, something went wrong.
Suspect this is due to those keys being bound in Widget, with show=False. What happens if you set priority=True on those bindings?
Maybe not in this MRE, but the app where I and Darren saw this issue had priority=True.
Seems pretty clear that this is a dupe of #2100 so I'll close this and track it via that.
Don't forget to star the repository!
Follow @textualizeio for Textual updates.
davep
No branches or pull requests
If you have bindings which use the keys
up
ordown
, they don't appear in the footer.Example:
When you run the app, the
Footer
widget contains no content.Textual Diagnostics
Versions
Python
Operating System
Terminal
Rich Console options
The text was updated successfully, but these errors were encountered: