Update resize handle for upstream vizia changes

This commit is contained in:
Robbert van der Helm
2023-11-14 22:46:10 +01:00
parent 27763d2632
commit 193ec70b8a
6 changed files with 34 additions and 34 deletions

View File

@@ -89,8 +89,6 @@ pub(crate) fn create(editor_state: Arc<ViziaState>, editor_data: Data) -> Option
editor_data.clone().build(cx);
ResizeHandle::new(cx);
HStack::new(cx, |cx| {
main_column(cx);
@@ -102,6 +100,8 @@ pub(crate) fn create(editor_state: Arc<ViziaState>, editor_data: Data) -> Option
}
});
});
ResizeHandle::new(cx);
})
}