From 78a1e72db5c90bf57177d91b70ef0ab469f3a10a Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 8 Jun 2013 00:17:16 +0400 Subject: [PATCH] shifted marked-only mode to F3... Signed-off-by: Alex A. Naanou --- ui/index.html | 2 ++ ui/keybindings.js | 9 +++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ui/index.html b/ui/index.html index 814b7697..de9aae05 100755 --- a/ui/index.html +++ b/ui/index.html @@ -126,10 +126,12 @@ $(function(){ }) .on('swipeUp', function(){ prevRibbon() + //shiftImageUp(null, DIRECTION) centerRibbons() }) .on('swipeDown', function(){ nextRibbon() + //shiftImageDown(null, DIRECTION) centerRibbons() }) diff --git a/ui/keybindings.js b/ui/keybindings.js index 834b06d9..af380a59 100755 --- a/ui/keybindings.js +++ b/ui/keybindings.js @@ -527,11 +527,12 @@ var KEYBOARD_CONFIG = { F2: { default: doc('Toggle mark visibility', function(){ toggleMarkesView() }), - shift: doc('Toggle marked only images view', - function(){ - toggleMarkedOnlyView() - }) + shift: 'F3', }, + F3: doc('Toggle marked only images view', + function(){ + toggleMarkedOnlyView() + }), E: doc('Open image in external software', openImage),