web: fix the filterpanel column width

Set flex = 1 on the column so it auto expands to take up the
entire available width.
This commit is contained in:
Damien Churchill 2011-10-05 02:21:06 +01:00
parent 2853d028fd
commit d6715fcbb9
1 changed files with 2 additions and 1 deletions

View File

@ -77,7 +77,8 @@ Ext.define('Deluge.FilterPanel', {
id: 'filter', id: 'filter',
sortable: false, sortable: false,
tpl: tpl, tpl: tpl,
dataIndex: 'filter' dataIndex: 'filter',
flex: 1
}] }]
}); });
this.relayEvents(this.grid, ['selectionchange']); this.relayEvents(this.grid, ['selectionchange']);