From 20becf854e5cb212c55bc46daa3efdf228ffd8c4 Mon Sep 17 00:00:00 2001 From: Russell Matney Date: Tue, 10 Oct 2023 14:49:47 -0400 Subject: [PATCH] fix: add missing tooltips for resource/array props These tooltips are super useful! This just adds two that are missing. I've been consistently clicking the 'reference' icon instead of the 'resource' one, but that's me being dumb. Also, the 'clear' icon irks me - is it supposed to be a broom? I was bothered until I realized it's also used in Godot's output UI, so I suppose it's fine - but I think the trashcan (used in a few places) might read a bit better for deleting things. --- addons/pandora/ui/components/property_bar/property_bar.tscn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/pandora/ui/components/property_bar/property_bar.tscn b/addons/pandora/ui/components/property_bar/property_bar.tscn index bea73954..a1409f99 100644 --- a/addons/pandora/ui/components/property_bar/property_bar.tscn +++ b/addons/pandora/ui/components/property_bar/property_bar.tscn @@ -75,12 +75,14 @@ scene = ExtResource("13_suig5") [node name="AddResourcePropertyButton" type="Button" parent="."] layout_mode = 2 +tooltip_text = "Resource property" icon = ExtResource("15_dus4l") script = ExtResource("3_kwfh5") scene = ExtResource("16_qe711") [node name="AddArrayPropertyButton" type="Button" parent="."] layout_mode = 2 +tooltip_text = "Array property" icon = ExtResource("17_ebxvo") script = ExtResource("3_kwfh5") scene = ExtResource("18_sjnhs")