diff --git a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js
index 8398990da3..068b8ef96a 100644
--- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js
+++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js
@@ -46,7 +46,7 @@ define([
SSE.Views.FormulaWizard = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
contentWidth: 580,
- height: 420
+ height: 397
},
initialize : function(options) {
@@ -74,7 +74,7 @@ define([
'
| ',
' ',
- '',
+ // '',
'',
'',
'',
@@ -222,7 +222,7 @@ define([
recalcArgTableSize: function() {
var height = this.panelDesc.outerHeight();
- height = this.$window.find('.box').height() - 7 - height - 60;
+ height = this.$window.find('.box').height() - 7 - height - 54;
height = parseInt(height/30) * 30;
this.tableArgs.parent().css('max-height', height);
if (!this.scrollerY)
@@ -272,7 +272,7 @@ define([
lblValue: div.find('#formula-wizard-lbl-val-arg'+argcount),
argInput: txt,
argName: 'Argument ' + (argcount+1),
- argDesc: 'some argument description',
+ // argDesc: 'some argument description',
argType: argtype,
argTypeName: me.getArgType(argtype)
});
|