Skip to content

Commit

Permalink
Bump godot from 92dce9c to 88d8ed0 (#283)
Browse files Browse the repository at this point in the history
* Bump godot from `92dce9c` to `88d8ed0`

Bumps [godot](https://github.com/godot-rust/gdext) from `92dce9c` to `88d8ed0`.
- [Commits](godot-rust/gdext@92dce9c...88d8ed0)

---
updated-dependencies:
- dependency-name: godot
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix for compile errors

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: d10sfan <[email protected]>
  • Loading branch information
dependabot[bot] and d10sfan authored Feb 12, 2024
1 parent ebff341 commit 13818d4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
20 changes: 13 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ pub struct LuxClient {
receiver: std::option::Option<std::sync::mpsc::Receiver<String>>,
last_downloads: std::option::Option<Vec<package_metadata::DownloadItem>>,
last_choice: std::option::Option<String>,
#[base]
base: Base<Node>,
}

Expand Down Expand Up @@ -118,7 +117,7 @@ impl LuxClient {
}

fn emit_signal(&mut self, path: &str, name: &str, value: &str) {
if let Some(parent) = &mut self.base.get_parent() {
if let Some(parent) = &mut self.base().get_parent() {
if let Some(mut emitter) = parent.get_node(path.into()) {
emitter.emit_signal(name.into(), &[Variant::from(value)]);
} else {
Expand Down

0 comments on commit 13818d4

Please sign in to comment.