diff --git a/src/option.c b/src/option.c
index 176a2cb..5ee9f2c 100644
a
|
b
|
static struct { |
79 | 79 | {N_("show &Hidden files"), &show_dot_files, toggle_show_hidden, 0 }, |
80 | 80 | {N_("show &Backup files"), &show_backups, toggle_show_backup, 0 }, |
81 | 81 | {N_("Use SI si&ze units"), &kilobyte_si, toggle_kilobyte_si, 0 }, |
| 82 | {N_("Reverse files only"), &reverse_files_only,TOGGLE_VARIABLE, 0 }, |
82 | 83 | { 0, 0, 0, 0 } |
83 | 84 | }; |
84 | 85 | |
85 | 86 | /* Make sure this corresponds to the check_options structure */ |
86 | 87 | #define OTHER_OPTIONS 13 |
87 | | #define PANEL_OPTIONS 7 |
| 88 | #define PANEL_OPTIONS 8 |
88 | 89 | |
89 | 90 | static WRadio *pause_radio; |
90 | 91 | |