1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

Update accesskit to 0.17 (#5372)

Updates accesskit and kittest. 

* [x] I have followed the instructions in the PR template
This commit is contained in:
lucasmerlin
2024-11-26 15:16:08 +01:00
committed by GitHub
parent 2f9b14def8
commit e28505077d
13 changed files with 56 additions and 54 deletions

View File

@@ -56,7 +56,7 @@ impl<State> HarnessBuilder<State> {
/// });
/// }, checked);
///
/// harness.get_by_name("Check me!").click();
/// harness.get_by_label("Check me!").click();
/// harness.run();
///
/// assert_eq!(*harness.state(), true);
@@ -85,7 +85,7 @@ impl<State> HarnessBuilder<State> {
/// ui.checkbox(checked, "Check me!");
/// }, checked);
///
/// harness.get_by_name("Check me!").click();
/// harness.get_by_label("Check me!").click();
/// harness.run();
///
/// assert_eq!(*harness.state(), true);