replace deprecated .show method with .show_inside

This commit is contained in:
2026-06-10 15:09:12 +03:00
parent 6f043f8222
commit 49b879d874
+1 -1
View File
@@ -303,7 +303,7 @@ impl App for Application {
} }
fn ui(&mut self, ui: &mut egui::Ui, frame: &mut Frame) { fn ui(&mut self, ui: &mut egui::Ui, frame: &mut Frame) {
CentralPanel::default().show(ui.ctx(), |ui| { CentralPanel::default().show_inside(ui, |ui| {
if self.pkg_state.is_none() { if self.pkg_state.is_none() {
if self.pkg_state_loading_thread.is_none() { if self.pkg_state_loading_thread.is_none() {
self.pkg_state_loading_thread = Some(self.get_package_state()); self.pkg_state_loading_thread = Some(self.get_package_state());