This website works better with JavaScript.
Home
Explore
Help
Sign In
Immanuel
/
nnn
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix not properly checking if file is selected (
#401
)
master
KlzXS
Mischievous Meerkat
5 years ago
parent
2e407d1325
commit
8b7a74a451
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/nnn.c
+ 1
- 1
src/nnn.c
View File
@@ -4863,7 +4863,7 @@ nochange:
/* Toggle selection status */
dents[cur].flags ^= FILE_SELECTED;
dents[cur].flags ? ++nselected : --nselected;
(
dents[cur].flags
& FILE_SELECTED)
? ++nselected : --nselected;
if (!nselected) {
writesel(NULL, 0);
Write
Preview
Loading…
Cancel
Save