Skip to content

Commit

Permalink
Change casing to indicate default action in confirmation dialog. (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
nielssp committed Nov 3, 2023
1 parent fc4d872 commit 4ad95b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void ui_message(const char *format, ...) {
}

int ui_confirm(const char *message) {
ui_message("%s (Y/N)", message);
ui_message("%s (y/N)", message);
switch (getch()) {
case 'y': case 'Y':
return 1;
Expand Down

0 comments on commit 4ad95b8

Please sign in to comment.