From 5e47238489471ee3da3ea125c8ee7926ab221079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Mon, 13 Apr 2020 04:38:35 +0200 Subject: [PATCH] Rename leftover `TextInputWidget` to `Marker` --- native/src/widget/text_input.rs | 4 ++-- 1 file 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::().hash(state); + struct Marker; + TypeId::of::().hash(state); self.width.hash(state); self.max_width.hash(state);