From 2e17d7860b6f857315f14341813645ca980a15df Mon Sep 17 00:00:00 2001 From: Héctor Ramón Date: Tue, 1 Jun 2021 19:14:04 +0700 Subject: Fix unused variable warning in `iced_web::text_input` --- web/src/widget/text_input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/src') diff --git a/web/src/widget/text_input.rs b/web/src/widget/text_input.rs index c671f80e..591fc21d 100644 --- a/web/src/widget/text_input.rs +++ b/web/src/widget/text_input.rs @@ -131,7 +131,7 @@ where &self, bump: &'b bumpalo::Bump, bus: &Bus, - style_sheet: &mut Css<'b>, + _style_sheet: &mut Css<'b>, ) -> dodrio::Node<'b> { use dodrio::builder::*; use wasm_bindgen::JsCast; -- cgit