We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ca12a commit 7885bcdCopy full SHA for 7885bcd
addons/block_code/ui/blocks/parameter_block/parameter_block.gd
@@ -50,8 +50,10 @@ static func get_scene_path():
50
51
52
func _on_focus_entered():
53
- _panel.add_theme_stylebox_override("panel", _panel_focus)
+ if not definition == null and not definition.variant_type == Variant.Type.TYPE_BOOL:
54
+ _panel.add_theme_stylebox_override("panel", _panel_focus)
55
56
57
func _on_focus_exited():
- _panel.add_theme_stylebox_override("panel", _panel_normal)
58
59
+ _panel.add_theme_stylebox_override("panel", _panel_normal)
0 commit comments