summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-11-03 03:12:23 +0100
committerLibravatar GitHub <noreply@github.com>2022-11-03 03:12:23 +0100
commit231d2fd8454eb9d24ba970131d4d7339cc0c8d51 (patch)
treeff21ac61a872b3581bc0ef385bca99c5fd6d3c0a /native
parent3b8669ae94d4d17d3bac0b8ce6d1b019e373253e (diff)
parent415978b80771fdd065b65e115d1dcc6aaa9d792c (diff)
downloadiced-231d2fd8454eb9d24ba970131d4d7339cc0c8d51.tar.gz
iced-231d2fd8454eb9d24ba970131d4d7339cc0c8d51.tar.bz2
iced-231d2fd8454eb9d24ba970131d4d7339cc0c8d51.zip
Merge pull request #1400 from nicksenger/lazy/cached
`Lazy` widget
Diffstat (limited to '')
-rw-r--r--native/src/widget/text_input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/text_input.rs b/native/src/widget/text_input.rs
index e5213cbe..54a6aaf8 100644
--- a/native/src/widget/text_input.rs
+++ b/native/src/widget/text_input.rs
@@ -92,7 +92,7 @@ where
is_secure: false,
font: Default::default(),
width: Length::Fill,
- padding: Padding::ZERO,
+ padding: Padding::new(5),
size: None,
on_change: Box::new(on_change),
on_paste: None,