aboutsummaryrefslogtreecommitdiff
path: root/client/menu/menu.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-07 15:25:56 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-07 15:25:56 +0200
commit84100fac9f1ba4c283b58c429821f7daae38d151 (patch)
treed729f2ee9d61c1d1336fac69c1de191fb66c9893 /client/menu/menu.gd
parent3ebb7582afc24992674cf6ebc0d6f314569d727f (diff)
parent99f0cb63c85a86485b1a6f2f14ca8abaa5ceb5d6 (diff)
downloadhurrycurry-84100fac9f1ba4c283b58c429821f7daae38d151.tar
hurrycurry-84100fac9f1ba4c283b58c429821f7daae38d151.tar.bz2
hurrycurry-84100fac9f1ba4c283b58c429821f7daae38d151.tar.zst
Merge branch 'master' of https://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'client/menu/menu.gd')
-rw-r--r--client/menu/menu.gd3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/menu/menu.gd b/client/menu/menu.gd
index 46dd7351..7ae7f3a0 100644
--- a/client/menu/menu.gd
+++ b/client/menu/menu.gd
@@ -78,7 +78,8 @@ func focus_first(node: Node) -> bool:
func connect_button_sounds(node: Node):
if node is Button:
- node.pressed.connect(Sound.play_click)
+ 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:
node.mouse_entered.connect(Sound.play_hover)
for c in node.get_children():