summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-13 04:38:35 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-13 04:38:35 +0200
commit5e47238489471ee3da3ea125c8ee7926ab221079 (patch)
treeba9d85b1e5b47ee33f46e0791d7751befc3101d7 /native
parent41f6a325e9b6c9df18ab2c3bcf386be988f4b4ef (diff)
downloadiced-5e47238489471ee3da3ea125c8ee7926ab221079.tar.gz
iced-5e47238489471ee3da3ea125c8ee7926ab221079.tar.bz2
iced-5e47238489471ee3da3ea125c8ee7926ab221079.zip
Rename leftover `TextInputWidget` to `Marker`
Diffstat (limited to 'native')
-rw-r--r--native/src/widget/text_input.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/widget/text_input.rs b/native/src/widget/text_input.rs
index 7a171d57..7d1a7415 100644
--- a/native/src/widget/text_input.rs
+++ b/native/src/widget/text_input.rs
@@ -526,8 +526,8 @@ where
fn hash_layout(&self, state: &mut Hasher) {
use std::{any::TypeId, hash::Hash};
- struct TextInputWidget;
- TypeId::of::<TextInputWidget>().hash(state);
+ struct Marker;
+ TypeId::of::<Marker>().hash(state);
self.width.hash(state);
self.max_width.hash(state);