diff --git a/crates/notedeck_columns/src/column.rs b/crates/notedeck_columns/src/column.rs index 61ca5b88..f961c568 100644 --- a/crates/notedeck_columns/src/column.rs +++ b/crates/notedeck_columns/src/column.rs @@ -1,5 +1,6 @@ use crate::{ actionbar::TimelineOpenResult, + drag::DragSwitch, route::{Route, Router, SingletonRouter}, timeline::{Timeline, TimelineCache, TimelineKind}, }; @@ -13,6 +14,7 @@ use tracing::warn; pub struct Column { pub router: Router, pub sheet_router: SingletonRouter, + pub drag: DragSwitch, } impl Column { @@ -21,6 +23,7 @@ impl Column { Column { router, sheet_router: SingletonRouter::default(), + drag: DragSwitch::default(), } }