@@ -16,7 +16,7 @@ use editor::messages::portfolio::utility_types::Platform;
16
16
use editor:: messages:: prelude:: * ;
17
17
use editor:: messages:: tool:: tool_messages:: tool_prelude:: WidgetId ;
18
18
use graph_craft:: document:: NodeId ;
19
- use graphene_core :: raster:: color:: Color ;
19
+ use graphene_std :: raster:: color:: Color ;
20
20
use serde:: Serialize ;
21
21
use serde_wasm_bindgen:: { self , from_value} ;
22
22
use std:: cell:: RefCell ;
@@ -627,7 +627,7 @@ impl EditorHandle {
627
627
insert_index : Option < usize > ,
628
628
) {
629
629
let mouse = mouse_x. and_then ( |x| mouse_y. map ( |y| ( x, y) ) ) ;
630
- let image = graphene_core :: raster:: Image :: from_image_data ( & image_data, width, height) ;
630
+ let image = graphene_std :: raster:: Image :: from_image_data ( & image_data, width, height) ;
631
631
632
632
let parent_and_insert_index = if let ( Some ( insert_parent_id) , Some ( insert_index) ) = ( insert_parent_id, insert_index) {
633
633
let insert_parent_id = NodeId ( insert_parent_id) ;
@@ -758,7 +758,7 @@ impl EditorHandle {
758
758
use graph_craft:: document:: DocumentNodeImplementation ;
759
759
use graph_craft:: document:: NodeInput ;
760
760
use graph_craft:: document:: value:: TaggedValue ;
761
- use graphene_core :: vector:: * ;
761
+ use graphene_std :: vector:: * ;
762
762
763
763
let ( _, request_receiver) = std:: sync:: mpsc:: channel ( ) ;
764
764
let ( response_sender, _) = std:: sync:: mpsc:: channel ( ) ;
0 commit comments