3 Commits

2 changed files with 12 additions and 3 deletions

View File

@@ -128,6 +128,11 @@ impl Widget<AppData> for AmongUsLauncherWidget {
self.build_widget(data); self.build_widget(data);
ctx.children_changed(); ctx.children_changed();
} }
Event::KeyDown(evt) => {
if evt.code == druid::Code::F5 {
ctx.submit_command(ATTEMPT_INSTALL);
}
}
_ => { _ => {
self.root.event(ctx, event, data, env); self.root.event(ctx, event, data, env);
} }
@@ -141,7 +146,7 @@ impl Widget<AppData> for AmongUsLauncherWidget {
self.root.update(ctx, data, env); self.root.update(ctx, data, env);
if old_data.among_us_path.is_empty() && !data.among_us_path.is_empty() { if old_data.among_us_path.is_empty() && !data.among_us_path.is_empty() {
ctx.submit_command(ATTEMPT_INSTALL); ctx.submit_command(ATTEMPT_INSTALL);
println!("Detect Stuff"); // println!("Detect Stuff");
} }
// println!("Update!"); // println!("Update!");
self.build_widget(data); self.build_widget(data);

View File

@@ -121,10 +121,13 @@ impl AppDelegate<AppData> for Delegate {
fn window_added( fn window_added(
&mut self, &mut self,
_id: WindowId, _id: WindowId,
_data: &mut AppData, data: &mut AppData,
_env: &Env, _env: &Env,
_ctx: &mut DelegateCtx, ctx: &mut DelegateCtx,
) { ) {
if !data.among_us_path.is_empty() {
ctx.submit_command(ATTEMPT_INSTALL);
}
} }
fn command( fn command(
&mut self, &mut self,
@@ -228,6 +231,7 @@ impl AppDelegate<AppData> for Delegate {
); );
} }
} }
data.initialized = !data.initialized;
return Handled::Yes; return Handled::Yes;
} }