fixed fullscreen refresh bug...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-04-03 21:33:36 +03:00
parent 7756a3b8ca
commit 9f5723ce2d
3 changed files with 4 additions and 3 deletions

View File

@ -90,7 +90,8 @@ var AppControlActions = actions.Actions({
win.show()
if(cfg != null && cfg.fullscreen){
// XXX check if we are full screen...
if(cfg != null && cfg.fullscreen && !win.isFullscreen){
this.toggleFullScreen()
}

View File

@ -107,7 +107,7 @@ module.GLOBAL_KEYBOARD = {
H: {
default: 'flipHorizontal',
ctrl: 'listURLHistory',
alt: 'browseActions: "/History/"',
alt: 'browseActions: "/History/" -- Open history menu',
},
V: 'flipVertical',
P: {

View File

@ -486,7 +486,7 @@ function getKeyHandlers(key, modifiers, keybindings, modes, shifted_keys, action
}
return f
}(c.action, c['no-default'], c.args, c.doc)
}(c.action, c['no-default'], c.arguments, c.doc)
// key code...
} else if(typeof(handler) == typeof(1)) {