Skip to content

Commit

Permalink
add missing magic lib
Browse files Browse the repository at this point in the history
  • Loading branch information
kuruk-mm committed Aug 19, 2024
1 parent 779a5f8 commit 318984c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ snapshots/

# Generated by Cargo
# will have compiled files and executables
debug/
target/

# just root...
/debug/
/lib/debug/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
Expand Down
Binary file not shown.
5 changes: 1 addition & 4 deletions godot/src/ui/components/chat/chat.gd
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ func _ready():

func _on_submit_message(_message: String):
UiSounds.play_sound("widget_chat_message_private_send")
if Global.is_mobile():
line_edit_command.grab_focus()
else:
_set_open_chat(false)
_set_open_chat(false)


func add_chat_message(bb_text: String) -> void:
Expand Down
3 changes: 2 additions & 1 deletion godot/src/ui/components/discover/discover.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ transparent_bg = true
handle_input_locally = false
gui_disable_input = true
size = Vector2i(1220, 121)
render_target_update_mode = 4
size_2d_override = Vector2i(1220, 121)
size_2d_override_stretch = true

[node name="Content" type="Control" parent="TextureRect/ScrollContainer/VBoxContainer/MarginContainer/ViewportContainer/SubViewport"]
clip_children = 2
Expand Down

0 comments on commit 318984c

Please sign in to comment.