Skip to content

Commit

Permalink
CTRL + n + n gets you the settings panel!
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoais committed Apr 17, 2021
1 parent 9c5c4b2 commit a4aa0e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/input_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,8 +522,10 @@ input_manager_process_key(struct input_manager *im,
if (control && !repeat && down) {
if (shift) {
collapse_panels(controller);
} else {
} else if(repeatCount == 0) {
expand_notification_panel(controller);
} else {
expand_settings_panel(controller);
}
}
return;
Expand Down

0 comments on commit a4aa0e6

Please sign in to comment.