Fixes issue where quality settings wont save due to no pagesize.

pull/2/head
Leonardo Galli 8 years ago
parent f36db9f77b
commit 5bd008f468

@ -10,7 +10,7 @@ module.exports = SettingsModelBase.extend({
origInit : SettingsModelBase.prototype.initialize, origInit : SettingsModelBase.prototype.initialize,
initialize : function() { initialize : function() {
this.set("pageSize", Config.getValue("pageSize")); this.set("pageSize", Config.getValue("pageSize", 1000));
this.origInit.call(this); this.origInit.call(this);
}, },

Loading…
Cancel
Save