forked from emilk/egui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix:
request_repaint_after
works even when called from background t…
…hread (emilk#2939) * Refactor repaint logic * request_repaint_after also fires the request_repaint callback * Bug fixes * Add test to egui_demo_app * build_demo_web: build debug unless --release is specified * Fix the web backend too * Run special clippy for wasm, forbidding some types/methods * Remove wasm_bindgen_check.sh * Fix typos * Revert "Remove wasm_bindgen_check.sh" This reverts commit 92dde25. * Only run cranky/clippy once
- Loading branch information
Showing
14 changed files
with
370 additions
and
188 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
doc-valid-idents = ["AccessKit", ".."] | ||
# There is also a scripts/clippy_wasm/clippy.toml which forbids some mthods that are not available in wasm. | ||
|
||
msrv = "1.65" | ||
|
||
# Allow-list of words for markdown in dosctrings https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown | ||
doc-valid-idents = [ | ||
# You must also update the same list in the root `clippy.toml`! | ||
"AccessKit", | ||
"..", | ||
] |
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
Oops, something went wrong.