From 34b926ed3b67519922f1cc4c3f95e70c8a68cd63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Gir=C3=A3o=20Serr=C3=A3o?= <5621605+rodrigogiraoserrao@users.noreply.github.com> Date: Tue, 4 Apr 2023 09:38:36 +0100 Subject: [PATCH] Update docstring for visible (#2211) As per the confusion in #2208 --- src/textual/dom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual/dom.py b/src/textual/dom.py index 04309bb6f..53bd75e0e 100644 --- a/src/textual/dom.py +++ b/src/textual/dom.py @@ -522,7 +522,7 @@ class DOMNode(MessagePump): @property def visible(self) -> bool: - """Is the DOM node visible?""" + """Is the visibility style set to a visible state?""" return self.styles.visibility != "hidden" @visible.setter