bench: add missing LaidOutWidget accessibility fields to lookup bench
Some checks failed
CI / build + test (push) Has been cancelled
CI / cargo audit (push) Has been cancelled

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.
This commit is contained in:
yamabush1
2026-06-02 08:43:13 +02:00
parent d221d5a0cd
commit e40ab637a6

View File

@@ -43,6 +43,8 @@ fn build_widgets( n: usize ) -> Vec<LaidOutWidget<()>>
keyboard_focusable: true,
cursor: ltk::CursorShape::Default,
tooltip: None,
accessible_label: None,
is_live_region: false,
}
} ).collect()
}