deps: update egui and eframe to 0.34.3

This commit is contained in:
2026-06-10 15:08:34 +03:00
parent 2590c72f14
commit 6f043f8222
3 changed files with 306 additions and 126 deletions
+4 -2
View File
@@ -283,7 +283,7 @@ impl Application {
}
impl App for Application {
fn update(&mut self, ctx: &Context, _: &mut Frame) {
fn logic(&mut self, ctx: &egui::Context, frame: &mut Frame) {
if let Some(process_thread) = &self.process_thread
&& let Some(process_rx) = &self.process_rx
{
@@ -300,8 +300,10 @@ impl App for Application {
self.process_log.push('\n');
}
}
}
CentralPanel::default().show(ctx, |ui| {
fn ui(&mut self, ui: &mut egui::Ui, frame: &mut Frame) {
CentralPanel::default().show(ui.ctx(), |ui| {
if self.pkg_state.is_none() {
if self.pkg_state_loading_thread.is_none() {
self.pkg_state_loading_thread = Some(self.get_package_state());