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

SelectionList is not properly displayed inside Collapsible #5690

Open
matkudela opened this issue Mar 31, 2025 · 1 comment
Open

SelectionList is not properly displayed inside Collapsible #5690

matkudela opened this issue Mar 31, 2025 · 1 comment

Comments

@matkudela
Copy link

I found a situation where SelectionList is being cut when its mounted inside Collapsible. After toggling Collapsible last Selection from SelectionList is not displayed at all. Tested on textual 3.0.0
Simple MRE:

from __future__ import annotations

from textual.app import App, ComposeResult
from textual.containers import Horizontal
from textual.widgets import Footer, SelectionList, Input, Collapsible
from textual.widgets._selection_list import Selection


class CustomWidget(Horizontal):
    DEFAULT_CSS = """
    CustomWidget {
        height: auto;
        border: $primary outer;
        Input {
          width: 2fr;
        }
        SelectionList {
          width: 1fr;
        }
    }
    """

    def compose(self) -> ComposeResult:
        yield Input()
        with Collapsible(title="Toggle for options"):
            yield SelectionList[int](
                Selection("first selection", 1),
                Selection("second selection", 1),
                Selection("third selection", 1), # not visible after toggling collapsible
            )


class MyApp(App):
    def compose(self) -> ComposeResult:
        yield CustomWidget()
        yield Footer()


MyApp().run()
Copy link

Thank you for your issue. Give us a little time to review it.

PS. You might want to check the FAQ if you haven't done so already.

This is an automated reply, generated by FAQtory

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

No branches or pull requests

1 participant