File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -96,20 +96,6 @@ impl eframe::App for MyApp {
96
96
} ) ;
97
97
} ) ;
98
98
99
- egui:: TopBottomPanel :: bottom ( "bottom_panel" )
100
- . resizable ( true )
101
- . show ( ctx, |ui| {
102
- egui:: ScrollArea :: vertical ( )
103
- . auto_shrink ( false )
104
- . show ( ui, |ui| {
105
- stack_ui ( ui) ;
106
-
107
- // full span test
108
- ui. add_space ( 20.0 ) ;
109
- full_span_widget ( ui, false ) ;
110
- } ) ;
111
- } ) ;
112
-
113
99
egui:: CentralPanel :: default ( ) . show ( ctx, |ui| {
114
100
egui:: ScrollArea :: both ( ) . auto_shrink ( false ) . show ( ui, |ui| {
115
101
ui. label ( "stack here:" ) ;
@@ -190,6 +176,20 @@ impl eframe::App for MyApp {
190
176
} ) ;
191
177
} ) ;
192
178
179
+ egui:: TopBottomPanel :: bottom ( "bottom_panel" )
180
+ . resizable ( true )
181
+ . show ( ctx, |ui| {
182
+ egui:: ScrollArea :: vertical ( )
183
+ . auto_shrink ( false )
184
+ . show ( ui, |ui| {
185
+ stack_ui ( ui) ;
186
+
187
+ // full span test
188
+ ui. add_space ( 20.0 ) ;
189
+ full_span_widget ( ui, false ) ;
190
+ } ) ;
191
+ } ) ;
192
+
193
193
egui:: Window :: new ( "Window" )
194
194
. pivot ( egui:: Align2 :: RIGHT_TOP )
195
195
. show ( ctx, |ui| {
You can’t perform that action at this time.
0 commit comments