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

Quitting inline app without padding will also clear the line above #5017

Closed
TomJGooding opened this issue Sep 18, 2024 · 3 comments
Closed

Comments

@TomJGooding
Copy link
Contributor

inline_app_no_padding

from textual.app import App, ComposeResult
from textual.widgets import Static


class InlineAppWithoutPadding(App):
    INLINE_PADDING = 0

    def compose(self) -> ComposeResult:
        yield Static("Quitting the app will also clear the line above me")


if __name__ == "__main__":
    app = InlineAppWithoutPadding()
    app.run(inline=True)
Copy link

We found the following entry in the FAQ which you may find helpful:

Feel free to close this issue if you found an answer in the FAQ. Otherwise, please give us a little time to review.

This is an automated reply, generated by FAQtory

@TomJGooding
Copy link
Contributor Author

Fixed in Textual v0.80.0.

Copy link

Don't forget to star the repository!

Follow @textualizeio for Textual updates.

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 a pull request may close this issue.

1 participant