Browse Source

Fixed shortcut Ctrl + {Number} shows white page.

pull/367/head
Ramiro Saenz 9 years ago
parent
commit
7b553362ba
  1. 4
      app/Application.js

4
app/Application.js

@ -93,7 +93,9 @@ Ext.define('Rambox.Application', {
,ctrl: true
,alt: false
,handler: function(key) {
Ext.cq1('app-main').setActiveTab(key - 48);
key = key - 48;
if ( key >= Ext.cq1('app-main').items.indexOf(Ext.getCmp('tbfill')) ) key++;
Ext.cq1('app-main').setActiveTab(key);
}
}
,{

Loading…
Cancel
Save