Skip to content

Commit

Permalink
Use new makepad events from makepad/makepad#396
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinaboos committed Feb 13, 2024
1 parent aae2e66 commit 08b17af
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 28 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,12 @@ impl MatchEvent for App {
fn handle_shutdown(&mut self, _cx: &mut Cx) {
log!("App::handle_shutdown()");
}
fn handle_foreground(&mut self, _cx: &mut Cx) {
log!("App::handle_foreground()");
}
fn handle_background(&mut self, _cx: &mut Cx) {
log!("App::handle_background()");
}
fn handle_pause(&mut self, _cx: &mut Cx) {
log!("App::handle_pause()");
}
Expand Down

0 comments on commit 08b17af

Please sign in to comment.