Add Markdown and MarkdownViewer to the disabled property test

This commit is contained in:
Dave Pearson
2023-02-15 11:16:23 +00:00
parent 4fe1e0f0c5
commit 3ccfb5370f

View File

@@ -8,6 +8,8 @@ from textual.widgets import (
DirectoryTree,
Input,
ListView,
Markdown,
MarkdownViewer,
Switch,
TextLog,
Tree,
@@ -28,6 +30,8 @@ class DisableApp(App[None]):
Switch(),
TextLog(),
Tree("Test"),
Markdown(),
MarkdownViewer(),
id="test-container",
)