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, DirectoryTree,
Input, Input,
ListView, ListView,
Markdown,
MarkdownViewer,
Switch, Switch,
TextLog, TextLog,
Tree, Tree,
@@ -28,6 +30,8 @@ class DisableApp(App[None]):
Switch(), Switch(),
TextLog(), TextLog(),
Tree("Test"), Tree("Test"),
Markdown(),
MarkdownViewer(),
id="test-container", id="test-container",
) )