Skip to content
Snippets Groups Projects
Commit 088ecc2c authored by deuce's avatar deuce
Browse files

Remove CTRL-N to "select none" (deselect all) in quote mode since DigitalMan

decided that CTRL-N should be page-down.  This should fix page down in quote
mode which has been broken since 1.83 three months ago (with a mention in the
log that the commit broke fseditor.js)
parent 2a5e48a9
No related branches found
No related tags found
No related merge requests found
......@@ -1237,8 +1237,7 @@ function quote_mode()
draw_quote_selection(quote_topline+i);
break;
case 'n':
case 'N':
case '\x0e': /* Unselect all */
case 'N': /* Unselect all */
for(i=0;i<quote_line.length;i++)
quote_line[i].selected=false;
for(i=0; i< quote_height; i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment