This repository was archived by the owner on Dec 28, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
view/graph-editor/src/component Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11#![ allow( missing_docs) ]
22
33use ensogl_core:: prelude:: * ;
4- use ensogl_core :: traits :: * ;
4+
55
66use ensogl_core:: display:: navigation:: navigator:: Navigator ;
77use ensogl_core:: display:: symbol:: geometry:: Sprite ;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use ensogl_core::display::symbol::shader::builder::CodeTemplate;
1616use ensogl_core:: display:: world:: * ;
1717use ensogl_core:: system:: gpu;
1818use ensogl_core:: system:: gpu:: texture;
19- use ensogl_core :: system :: gpu :: types :: * ;
19+
2020
2121// =============
2222// === Glyph ===
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ pub mod prelude {
4747}
4848
4949use prelude:: * ;
50- use traits :: * ;
50+
5151
5252use crate :: generate:: Context ;
5353
Original file line number Diff line number Diff line change @@ -989,7 +989,7 @@ impl SemanticSplit {
989989 /// Shapes that are at the split location.
990990 fn split_shapes ( & self ) -> Vec < display:: object:: Id > {
991991 self . index_filtered_shapes ( move |index| {
992- ( index == self . split_index as i32 )
992+ index == self . split_index as i32
993993 } )
994994 }
995995}
You can’t perform that action at this time.
0 commit comments