From e40ab637a6648cfac2dccd74c039a4d2be7e6968 Mon Sep 17 00:00:00 2001 From: yamabush1 Date: Tue, 2 Jun 2026 08:43:13 +0200 Subject: [PATCH] bench: add missing LaidOutWidget accessibility fields to lookup bench benches/lookup.rs constructed LaidOutWidget without the accessible_label and is_live_region fields added for accessibility, so cargo check --all-targets failed to compile the bench. Set them to None / false. --- benches/lookup.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/benches/lookup.rs b/benches/lookup.rs index 54a978c..eef1d19 100644 --- a/benches/lookup.rs +++ b/benches/lookup.rs @@ -43,6 +43,8 @@ fn build_widgets( n: usize ) -> Vec> keyboard_focusable: true, cursor: ltk::CursorShape::Default, tooltip: None, + accessible_label: None, + is_live_region: false, } } ).collect() }