-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add widgets crate * add completion edit * add segmented control * animations * correct opening and closing of popup * polish completion edit * fix bug on retyping after selected but without closing popup * fix transition * fix tab focus * highlight invalid search * fix test * fix behavior panel * Add raw NAO config to twix configuration * remove dbg! * fix focus * make close_me clearer * remove animate_to function * make ids in enum plot nicer --------- Co-authored-by: okiwi6 <oleflb> Co-authored-by: Rasmus Mecklenburg <[email protected]>
- Loading branch information
Showing
27 changed files
with
2,021 additions
and
871 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[package] | ||
name = "hulk_widgets" | ||
version.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
|
||
[dependencies] | ||
communication = { workspace = true } | ||
egui = { workspace = true } | ||
egui_extras = { workspace = true } | ||
nucleo-matcher = { workspace = true } |
Oops, something went wrong.