From 3a447b4e704ebb8244343da3f512c399c6e05a97 Mon Sep 17 00:00:00 2001 From: Isaiah Odhner Date: Sun, 28 May 2023 02:42:56 -0400 Subject: [PATCH] Enable inspecting inspector Layout is hard, but at least I have this nifty new tool... --- src/textual_paint/inspector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual_paint/inspector.py b/src/textual_paint/inspector.py index 3d49acc..7fe6f66 100644 --- a/src/textual_paint/inspector.py +++ b/src/textual_paint/inspector.py @@ -370,7 +370,7 @@ class OriginalStyles(NamedTuple): tint: Color | None """The original tint of the widget.""" -ALLOW_INSPECTING_INSPECTOR = False +ALLOW_INSPECTING_INSPECTOR = True """Whether widgets in the inspector can be picked for inspection.""" class Inspector(Container):