swapped up and down

This commit is contained in:
nova 2025-05-31 00:40:40 +02:00
parent 0574732a69
commit 3d3052e436

View File

@ -27,13 +27,13 @@ void user_interactions(char *input, unsigned int *status, unsigned int *settings
} else if (*input == 'h') {
chdir("..");
*status |= (STATUS_RUN_BACKEND | STATUS_UPDATE_SCREEN_MASK);
} else if (*input == 'n') {
} else if (*input == 't') {
pthread_mutex_lock(&mutex_selection);
/* capping the maximum file is done inside thread_mid */
selected_file_current++;
*status |= (STATUS_RUN_BACKEND | STATUS_UPDATE_SCREEN_MASK);
pthread_mutex_unlock(&mutex_selection);
} else if (*input == 't') {
} else if (*input == 'n') {
pthread_mutex_lock(&mutex_selection);
if (selected_file_current != 0) {
selected_file_current--;