From d6715fcbb9504ca0e8e1c81f215fc956e1760e52 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Wed, 5 Oct 2011 02:21:06 +0100 Subject: [PATCH] web: fix the filterpanel column width Set flex = 1 on the column so it auto expands to take up the entire available width. --- deluge/ui/web/js/deluge-all/FilterPanel.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deluge/ui/web/js/deluge-all/FilterPanel.js b/deluge/ui/web/js/deluge-all/FilterPanel.js index e9370d872..13866a61e 100644 --- a/deluge/ui/web/js/deluge-all/FilterPanel.js +++ b/deluge/ui/web/js/deluge-all/FilterPanel.js @@ -77,7 +77,8 @@ Ext.define('Deluge.FilterPanel', { id: 'filter', sortable: false, tpl: tpl, - dataIndex: 'filter' + dataIndex: 'filter', + flex: 1 }] }); this.relayEvents(this.grid, ['selectionchange']);