diff options
Diffstat (limited to 'client/menu/menu.gd')
-rw-r--r-- | client/menu/menu.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/menu.gd b/client/menu/menu.gd index 52a9bd7d..7f4a1fb6 100644 --- a/client/menu/menu.gd +++ b/client/menu/menu.gd @@ -113,7 +113,7 @@ func connect_button_sounds(node: Node): if node is Button or node is TextureButton: if not node.is_in_group("no_click_sound"): node.pressed.connect(Sound.play_click) - if node is Button or node is LineEdit or node is Slider: + if (node is Button and not node.disabled) or (node is LineEdit and node.editable) or node is Slider: node.mouse_entered.connect(Sound.play_hover) for c in node.get_children(): connect_button_sounds(c) |