Skip to content

Commit

Permalink
Release 0.4.1 (#97)
Browse files Browse the repository at this point in the history
* fixed a missing ;

* Release 0.4.1
  • Loading branch information
Andrew Wheeler(Genusis) authored Feb 27, 2023
1 parent ce9fd86 commit e100ee0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iced_aw"
version = "0.4.0"
version = "0.4.1"
authors = ["Kaiden42 <[email protected]>"]
edition = "2021"
description = "Additional widgets for the Iced GUI library"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Include `iced_aw` as a dependency in your `Cargo.toml`:
```toml
[dependencies]
iced = "0.8.0"
iced_aw = { version = "0.4", default-features = false, features = [...] }
iced_aw = { version = "0.4.1", default-features = false, features = [...] }
```

## Versioning
Expand Down
2 changes: 1 addition & 1 deletion src/native/menu/menu_bar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ where

fn diff(&self, tree: &mut Tree) {
if tree.children.len() > self.menu_roots.len() {
tree.children.truncate(self.menu_roots.len())
tree.children.truncate(self.menu_roots.len());
}

tree.children
Expand Down

0 comments on commit e100ee0

Please sign in to comment.