Skip to content

Commit

Permalink
Add keyboard shortcut to expand settings panel
Browse files Browse the repository at this point in the history
PR #2260 <#2260>

Signed-off-by: Romain Vimont <[email protected]>
  • Loading branch information
brunoais authored and rom1v committed Apr 20, 2021
1 parent 66b6170 commit 21b8579
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 @@ -524,8 +524,10 @@ input_manager_process_key(struct input_manager *im,
if (control && !repeat && down) {
if (shift) {
collapse_panels(controller);
} else {
} else if (im->key_repeat == 0) {
expand_notification_panel(controller);
} else {
expand_settings_panel(controller);
}
}
return;
Expand Down

0 comments on commit 21b8579

Please sign in to comment.