Commit 47de182ce15bdbc75f9873bfa984c6afc125dc89
1 parent
535c65b4
Exists in
master
and in
111 other branches
fix zoom panel width
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
js/app/views/PlotComponents/PlotZoomPlug.js
... | ... | @@ -101,6 +101,7 @@ Ext.define('amdaPlotComp.PlotZoomPlug', { |
101 | 101 | if (!this.win) { |
102 | 102 | this.win = new Ext.Window({ |
103 | 103 | id: 'plot-zoom-win-' + this.hostCmp.ownerCt.getId(), // Plot window ID |
104 | + width: 250, | |
104 | 105 | x: 0, y: 0, |
105 | 106 | baseCls: 'x-panel', |
106 | 107 | title: 'Zoom', |
... | ... | @@ -332,6 +333,7 @@ Ext.define('amdaPlotComp.PlotZoomPlug', { |
332 | 333 | |
333 | 334 | this.form = new Ext.form.FormPanel({ |
334 | 335 | frame: true, |
336 | + width: 250, | |
335 | 337 | layout: { |
336 | 338 | type: 'vbox', |
337 | 339 | pack: 'start', |
... | ... |