diff options
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/menu.gd | 3 | ||||
-rw-r--r-- | client/menu/setup.tscn | 2 |
2 files changed, 3 insertions, 2 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(): diff --git a/client/menu/setup.tscn b/client/menu/setup.tscn index 696d1288..6a255b95 100644 --- a/client/menu/setup.tscn +++ b/client/menu/setup.tscn @@ -346,7 +346,7 @@ text = "Signature of the Employee: fit_content = true scroll_active = false -[node name="Signature" type="Button" parent="ScrollContainer/Control/TextureRect/PaperMargin/Contents/Signatures/EmployeeMargin/Sign"] +[node name="Signature" type="Button" parent="ScrollContainer/Control/TextureRect/PaperMargin/Contents/Signatures/EmployeeMargin/Sign" groups=["no_click_sound"]] custom_minimum_size = Vector2(200, 80) layout_mode = 2 text = "Click to sign" |