@@ -552,7 +552,7 @@ impl<'a> Recorder<'a> {
552
552
} ,
553
553
drawn_rects : drawn_rects. clone ( ) . into_iter ( ) . collect ( ) ,
554
554
} ;
555
- let debug_app = App {
555
+ let debug_app = AppView {
556
556
debug_info : Some ( debug_info) ,
557
557
..app. clone ( )
558
558
} ;
@@ -641,7 +641,7 @@ impl<'a> Recorder<'a> {
641
641
Ok ( self . state )
642
642
}
643
643
644
- fn make_app ( & ' a self , debug_info : Option < AppDebugInfo > ) -> App < ' a > {
644
+ fn make_app ( & ' a self , debug_info : Option < AppDebugInfo > ) -> AppView < ' a > {
645
645
let file_views: Vec < FileView > = self
646
646
. state
647
647
. files
@@ -773,7 +773,7 @@ impl<'a> Recorder<'a> {
773
773
}
774
774
} )
775
775
. collect ( ) ;
776
- App {
776
+ AppView {
777
777
debug_info : None ,
778
778
file_views,
779
779
quit_dialog : self . quit_dialog . clone ( ) ,
@@ -1689,13 +1689,13 @@ struct AppDebugInfo {
1689
1689
}
1690
1690
1691
1691
#[ derive( Clone , Debug ) ]
1692
- struct App < ' a > {
1692
+ struct AppView < ' a > {
1693
1693
debug_info : Option < AppDebugInfo > ,
1694
1694
file_views : Vec < FileView < ' a > > ,
1695
1695
quit_dialog : Option < QuitDialog > ,
1696
1696
}
1697
1697
1698
- impl App < ' _ > {
1698
+ impl AppView < ' _ > {
1699
1699
fn height ( & self ) -> usize {
1700
1700
let Self {
1701
1701
debug_info : _,
@@ -1706,7 +1706,7 @@ impl App<'_> {
1706
1706
}
1707
1707
}
1708
1708
1709
- impl Component for App < ' _ > {
1709
+ impl Component for AppView < ' _ > {
1710
1710
type Id = ComponentId ;
1711
1711
1712
1712
fn id ( & self ) -> Self :: Id {
0 commit comments