From d3aedd16f654a3802e848b955251294a02a3b9af Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sun, 21 Dec 2014 11:37:28 -0800 Subject: [PATCH] Change 'e'xposure key to 'B'rightness --- picsorter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picsorter.js b/picsorter.js index 1f6b8f0..cfbf5db 100644 --- a/picsorter.js +++ b/picsorter.js @@ -214,7 +214,7 @@ Mousetrap.bind('X', mark_not_deleted); Mousetrap.bind('r', rotate); Mousetrap.bind('i', announce); Mousetrap.bind('f', function() { say(files[input_index]); }); -Mousetrap.bind('e', function() { say_exposure(); }); +Mousetrap.bind('B', function() { say_exposure(); }); Mousetrap.bind('c', function() { $("#name").show().focus(); return false; }); Mousetrap.bind('C', function() { if (last_name) { set_name(last_name); } }); Mousetrap.bind('%', function() { say((100 * input_index / files.length).toFixed(2) + "%"); }); -- 2.44.1