Skip to content

Commit

Permalink
Upgraded to version 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
archcrack committed Jan 22, 2021
1 parent 6d80eb2 commit 465931b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions clifm.c
Original file line number Diff line number Diff line change
Expand Up @@ -6299,13 +6299,17 @@ readline_kbind_action(int count, int key) {

case 121:
status = light_mode;
if (status)
if (light_mode)
light_mode = 0;
else
light_mode = 1;
if (cd_lists_on_the_fly) {
while (files--) free(dirlist[files]);
list_dir();

if (status != light_mode) {
CLEAR;
while (files--)
free(dirlist[files]);
puts("");
list_dir();
}
break;

Expand Down

0 comments on commit 465931b

Please sign in to comment.