We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Event::new
1 parent d04a8b7 commit 23b4d8dCopy full SHA for 23b4d8d
.github/workflows/ci.yml
@@ -72,6 +72,10 @@ jobs:
72
- name: cargo clippy
73
run: cargo clippy --all-targets -- -D warnings
74
75
+ - name: cargo clippy -p accesskit_atspi_common
76
+ if: matrix.os == 'ubuntu-latest'
77
+ run: cargo clippy -p accesskit_atspi_common --all-features -- -D warnings
78
+
79
find-msrv:
80
runs-on: ubuntu-latest
81
outputs:
platforms/atspi-common/src/simplified.rs
@@ -618,7 +618,7 @@ impl Event {
618
data: None,
619
},
620
ObjectEvent::StateChanged(state, value) => Self {
621
- kind: format!("object:state-changed:{}", String::from(state)),
+ kind: format!("object:state-changed:{}", state.to_static_str()),
622
source,
623
detail1: value as i32,
624
detail2: 0,
0 commit comments