Skip to content

Commit

Permalink
Use CTRL+O instead of CTRL+C to continue apps or processes (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
nokyan committed May 4, 2024
1 parent b54792c commit 6b2a792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ impl Application {
self.set_accels_for_action("app.end-app-process", &["<Control>E", "Delete"]);
self.set_accels_for_action("app.kill-app-process", &["<Control>K", "<Shift>Delete"]);
self.set_accels_for_action("app.halt-app-process", &["<Control>H"]);
self.set_accels_for_action("app.continue-app-process", &["<Control>C"]);
self.set_accels_for_action("app.continue-app-process", &["<Control>O"]);
self.set_accels_for_action("app.information-app-process", &["<Control>I", "Return"]);
}

Expand Down

0 comments on commit 6b2a792

Please sign in to comment.