summaryrefslogtreecommitdiffstats
path: root/web/src/widget
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@lich.io>2021-06-01 19:14:04 +0700
committerLibravatar Héctor Ramón <hector@lich.io>2021-06-01 19:14:04 +0700
commit2e17d7860b6f857315f14341813645ca980a15df (patch)
tree9ffd5d68c86d6a7a91c0f94eeaa73fb6559c2a31 /web/src/widget
parent0a14492343e30bf0856088c91406c2da7c7f5860 (diff)
downloadiced-2e17d7860b6f857315f14341813645ca980a15df.tar.gz
iced-2e17d7860b6f857315f14341813645ca980a15df.tar.bz2
iced-2e17d7860b6f857315f14341813645ca980a15df.zip
Fix unused variable warning in `iced_web::text_input`
Diffstat (limited to 'web/src/widget')
-rw-r--r--web/src/widget/text_input.rs2
1 files changed, 1 insertions, 1 deletions
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<Message>,
- style_sheet: &mut Css<'b>,
+ _style_sheet: &mut Css<'b>,
) -> dodrio::Node<'b> {
use dodrio::builder::*;
use wasm_bindgen::JsCast;