File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ impl eframe::App for BrowserApp {
348348 // Address bar
349349 egui:: Panel :: top ( "addr" )
350350 . frame ( egui:: Frame :: default ( ) . inner_margin ( egui:: Margin :: symmetric ( 8 , 6 ) ) )
351- . show_inside ( ui, |ui| {
351+ . show ( ui, |ui| {
352352 ui. horizontal ( |ui| {
353353 if self . is_loading {
354354 ui. spinner ( ) ;
@@ -368,12 +368,12 @@ impl eframe::App for BrowserApp {
368368 // Status bar
369369 egui:: Panel :: bottom ( "status" )
370370 . frame ( egui:: Frame :: default ( ) . inner_margin ( egui:: Margin :: symmetric ( 4 , 2 ) ) )
371- . show_inside ( ui, |ui| {
371+ . show ( ui, |ui| {
372372 ui. label ( egui:: RichText :: new ( & self . status_url ) . small ( ) ) ;
373373 } ) ;
374374
375375 // Browser content
376- egui:: CentralPanel :: default ( ) . show_inside ( ui, |ui| {
376+ egui:: CentralPanel :: default ( ) . show ( ui, |ui| {
377377 let panel_size = ui. available_size ( ) ;
378378
379379 if panel_size != self . last_panel_size && panel_size. x > 0.0 && panel_size. y > 0.0 {
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ impl eframe::App for BrowserApp {
335335
336336 egui:: Panel :: top ( "addr" )
337337 . frame ( egui:: Frame :: default ( ) . inner_margin ( egui:: Margin :: symmetric ( 8 , 6 ) ) )
338- . show_inside ( ui, |ui| {
338+ . show ( ui, |ui| {
339339 ui. horizontal ( |ui| {
340340 if self . is_loading {
341341 ui. spinner ( ) ;
@@ -354,11 +354,11 @@ impl eframe::App for BrowserApp {
354354
355355 egui:: Panel :: bottom ( "status" )
356356 . frame ( egui:: Frame :: default ( ) . inner_margin ( egui:: Margin :: symmetric ( 4 , 2 ) ) )
357- . show_inside ( ui, |ui| {
357+ . show ( ui, |ui| {
358358 ui. label ( egui:: RichText :: new ( & self . status_url ) . small ( ) ) ;
359359 } ) ;
360360
361- egui:: CentralPanel :: default ( ) . show_inside ( ui, |ui| {
361+ egui:: CentralPanel :: default ( ) . show ( ui, |ui| {
362362 let panel_size = ui. available_size ( ) ;
363363
364364 if panel_size != self . last_panel_size && panel_size. x > 0.0 && panel_size. y > 0.0 {
Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ impl eframe::App for BrowserApp {
415415 // Address bar
416416 egui:: Panel :: top ( "addr" )
417417 . frame ( egui:: Frame :: default ( ) . inner_margin ( egui:: Margin :: symmetric ( 8 , 6 ) ) )
418- . show_inside ( ui, |ui| {
418+ . show ( ui, |ui| {
419419 ui. horizontal ( |ui| {
420420 if self . is_loading {
421421 ui. spinner ( ) ;
@@ -435,12 +435,12 @@ impl eframe::App for BrowserApp {
435435 // Status bar
436436 egui:: Panel :: bottom ( "status" )
437437 . frame ( egui:: Frame :: default ( ) . inner_margin ( egui:: Margin :: symmetric ( 4 , 2 ) ) )
438- . show_inside ( ui, |ui| {
438+ . show ( ui, |ui| {
439439 ui. label ( egui:: RichText :: new ( & self . status_url ) . small ( ) ) ;
440440 } ) ;
441441
442442 // Browser content
443- egui:: CentralPanel :: default ( ) . show_inside ( ui, |ui| {
443+ egui:: CentralPanel :: default ( ) . show ( ui, |ui| {
444444 let panel_size = ui. available_size ( ) ;
445445
446446 if panel_size != self . last_panel_size && panel_size. x > 0.0 && panel_size. y > 0.0 {
You can’t perform that action at this time.
0 commit comments