yoda: iced_widget cleanup (7→0 warnings)
Some checks are pending
Audit / vulnerabilities (push) Waiting to run
Check / wasm (push) Waiting to run
Check / widget (push) Waiting to run
Document / all (push) Waiting to run
Format / all (push) Waiting to run
Lint / all (push) Waiting to run
Test / all (macOS-latest, beta) (push) Waiting to run
Test / all (macOS-latest, 1.88) (push) Waiting to run
Test / all (macOS-latest, stable) (push) Waiting to run
Test / all (ubuntu-latest, 1.88) (push) Waiting to run
Test / all (ubuntu-latest, beta) (push) Waiting to run
Test / all (ubuntu-latest, stable) (push) Waiting to run
Test / all (windows-latest, 1.88) (push) Waiting to run
Test / all (windows-latest, beta) (push) Waiting to run
Test / all (windows-latest, stable) (push) Waiting to run

- overlay/menu.rs:578: real bug fix — List::draw was rendering with
  text::Wrapping::default() instead of the configured self.text_wrap.
  Wiring it through eliminates the 'field never read' warning AND
  honors the wrap setting that was being silently dropped.
- slider.rs:735-744: replace `if let Ok(x) = …try_into() { … }` with
  irrefutable `let Ok(x) = …try_into();` (the conversion is provably
  Infallible at the call site). Same behavior, no compiler noise.
- lazy.rs:8 / lazy/component.rs:13: drop unused
  `iced_renderer::core::widget::Operation` imports.

Leyoda 2026 – GPLv3
This commit is contained in:
Votre Nom 2026-05-05 18:38:57 +02:00
parent e424487704
commit d33d068c17
4 changed files with 9 additions and 15 deletions

View file

@ -10,7 +10,6 @@ use crate::core::{
self, Clipboard, Element, Length, Rectangle, Shell, Size, Vector, Widget,
};
use iced_renderer::core::widget::Operation;
use ouroboros::self_referencing;
use std::cell::RefCell;
use std::marker::PhantomData;