From a08ceadd1af54ffdd9f2ee6a693ce37c20c7e1c8 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 9 Oct 2023 11:11:03 -0400 Subject: [PATCH] Rename `view_type` to `state_type` --- crates/ui2/src/components/collab_panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ui2/src/components/collab_panel.rs b/crates/ui2/src/components/collab_panel.rs index c435f7e9cd..1baa082f1d 100644 --- a/crates/ui2/src/components/collab_panel.rs +++ b/crates/ui2/src/components/collab_panel.rs @@ -11,14 +11,14 @@ use crate::{ #[derive(Element)] pub struct CollabPanel { - view_type: PhantomData, + state_type: PhantomData, scroll_state: ScrollState, } impl CollabPanel { pub fn new(scroll_state: ScrollState) -> Self { Self { - view_type: PhantomData, + state_type: PhantomData, scroll_state, } }