diff options
| -rw-r--r-- | native/src/widget/pane_grid/state.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/widget/pane_grid/state.rs b/native/src/widget/pane_grid/state.rs index ed2813b8..6bb3fd9c 100644 --- a/native/src/widget/pane_grid/state.rs +++ b/native/src/widget/pane_grid/state.rs @@ -21,7 +21,7 @@ use std::collections::HashMap;  /// [`Pane`]: struct.Pane.html  /// [`Split`]: struct.Split.html  /// [`State`]: struct.State.html -#[derive(Debug)] +#[derive(Debug, Clone)]  pub struct State<T> {      pub(super) panes: HashMap<Pane, T>,      pub(super) internal: Internal, @@ -248,7 +248,7 @@ impl<T> State<T> {      }  } -#[derive(Debug)] +#[derive(Debug, Clone)]  pub struct Internal {      layout: Node,      last_id: usize,  | 
