move plot to separate file

This commit is contained in:
Michael Sippel 2021-11-19 12:04:37 +01:00
parent f480b79031
commit bf8a949cdd
Signed by: senvas
GPG key ID: F96CF119C34B64A6
3 changed files with 143 additions and 118 deletions
nested/src/list

View file

@ -38,7 +38,7 @@ where ItemEditor: TerminalEditor + ?Sized + Send + Sync + 'static,
FnMakeItemEditor: Fn() -> Arc<RwLock<ItemEditor>>
{
cursor: SingletonBuffer<ListCursor>,
data: VecBuffer<Arc<RwLock<ItemEditor>>>,
pub data: VecBuffer<Arc<RwLock<ItemEditor>>>,
cursor_port: ViewPort<dyn SingletonView<Item = ListCursor>>,
data_port: ViewPort<RwLock<Vec<Arc<RwLock<ItemEditor>>>>>,