@@ -7,16 +7,12 @@ use notation_model::lane_kind::LaneKind;
77use notation_model:: prelude:: Position ;
88use serde:: { Deserialize , Serialize } ;
99
10- #[ cfg( feature = "inspector" ) ]
11- use bevy_inspector_egui:: Inspectable ;
12-
1310use crate :: bar:: bar_layout:: BarLayoutData ;
1411use crate :: lane:: lane_layout:: LaneLayoutData ;
1512use crate :: play:: pos_indicator:: PosIndicatorData ;
1613use crate :: prelude:: { NotationTheme , TabBars } ;
1714
1815#[ derive( Copy , Clone , PartialEq , Eq , Serialize , Deserialize , Debug ) ]
19- #[ cfg_attr( feature = "inspector" , derive( Inspectable ) ) ]
2016pub enum LayoutMode {
2117 Grid ,
2218 Line ,
@@ -28,7 +24,6 @@ impl Default for LayoutMode {
2824}
2925
3026#[ derive( Copy , Clone , PartialEq , Eq , Serialize , Deserialize , Debug ) ]
31- #[ cfg_attr( feature = "inspector" , derive( Inspectable ) ) ]
3227pub enum GridAlignMode {
3328 Center ,
3429 ForceCenter ,
@@ -42,7 +37,6 @@ impl Default for GridAlignMode {
4237}
4338
4439#[ derive( Clone , Serialize , Deserialize , Debug ) ]
45- #[ cfg_attr( feature = "inspector" , derive( Inspectable ) ) ]
4640pub struct LayoutSettings {
4741 pub mode : LayoutMode ,
4842 pub grid_align_mode : GridAlignMode ,
0 commit comments