(ctx: &egui::Context, jobs: &mut JobQueue, bin_name: String)
| 136 | } |
| 137 | |
| 138 | pub fn start_update(ctx: &egui::Context, jobs: &mut JobQueue, bin_name: String) { |
| 139 | jobs.push_once(Job::Update, || { |
| 140 | jobs::update::start_update(egui_waker(ctx), UpdateConfig { build_updater, bin_name }) |
| 141 | }); |
| 142 | } |
no test coverage detected