From 034121a105b56cea7be836b34e7c30873c601eaa Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 2 Mar 2017 16:34:13 +0300 Subject: [PATCH] bugfix... Signed-off-by: Alex A. Naanou --- ui (gen4)/features/filesystem.js | 5 ++++- ui (gen4)/features/keyboard.js | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ui (gen4)/features/filesystem.js b/ui (gen4)/features/filesystem.js index 3fd9dbbe..69db0240 100755 --- a/ui (gen4)/features/filesystem.js +++ b/ui (gen4)/features/filesystem.js @@ -2355,7 +2355,10 @@ var FileSystemWriterUIActions = actions.Actions({ make(['Export $mode: ', function(){ return mode }]) .on('open', - widgets.makeNestedConfigListEditor(that, o, + // XXX for some reason o is initially undefined when + // it should be set to the dialog... + //widgets.makeNestedConfigListEditor(that, o, + widgets.makeNestedConfigListEditor(that, make.dialog, 'export-dialog-modes', 'export-dialog-mode', { diff --git a/ui (gen4)/features/keyboard.js b/ui (gen4)/features/keyboard.js index 5903fe85..e6782f33 100755 --- a/ui (gen4)/features/keyboard.js +++ b/ui (gen4)/features/keyboard.js @@ -287,6 +287,9 @@ module.GLOBAL_KEYBOARD = { shift_B: 'setBaseRibbon', + alt_PgUp: 'shiftRibbonUp', + alt_PgDown: 'shiftRibbonDown', + // editing... R: 'rotateCW',