Commit db88c034be079f6d8e5ebcb4cb03810671ffb084
1 parent
cc557f5f
Exists in
master
and in
111 other branches
redmine 5668 corrected
Showing
1 changed file
with
9 additions
and
3 deletions
Show diff stats
js/app/views/PlotTabResultUI.js
... | ... | @@ -439,7 +439,7 @@ Ext.define('amdaUI.PlotTabResultUI', { |
439 | 439 | this.navToolBar.removeAll(true); |
440 | 440 | |
441 | 441 | this.multiPlotCheck = Ext.create('Ext.form.field.Checkbox', { |
442 | - boxLabel : 'Linked to Multi Plot Mode', | |
442 | + boxLabel : 'Linked to Multi Plot', | |
443 | 443 | scope: this, |
444 | 444 | handler: function(check, checked) { |
445 | 445 | if (!this.disableSynchronize) |
... | ... | @@ -449,11 +449,17 @@ Ext.define('amdaUI.PlotTabResultUI', { |
449 | 449 | }); |
450 | 450 | |
451 | 451 | var commonItemsCfg = [ |
452 | + '-', | |
452 | 453 | { |
453 | 454 | xtype: 'tbspacer', |
454 | - width: 50 | |
455 | - }, | |
455 | + width: 20 | |
456 | + }, | |
456 | 457 | this.multiPlotCheck, |
458 | + { | |
459 | + xtype: 'tbspacer', | |
460 | + width: 2 | |
461 | + }, | |
462 | + '-', | |
457 | 463 | '->', |
458 | 464 | { |
459 | 465 | text: 'Get HST Data', |
... | ... |