summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Churchill <damoxc@gmail.com>2011-10-05 02:21:06 +0100
committerDamien Churchill <damoxc@gmail.com>2011-10-05 02:21:06 +0100
commitd6715fcbb9504ca0e8e1c81f215fc956e1760e52 (patch)
treec5f6ca181f4d60afaef0a2535812b162adc0f753
parent2853d028fd8bfaa31794fe5c854b00609186c5fb (diff)
downloaddeluge-d6715fcbb9504ca0e8e1c81f215fc956e1760e52.tar.gz
deluge-d6715fcbb9504ca0e8e1c81f215fc956e1760e52.tar.bz2
deluge-d6715fcbb9504ca0e8e1c81f215fc956e1760e52.zip
web: fix the filterpanel column width
Set flex = 1 on the column so it auto expands to take up the entire available width.
-rw-r--r--deluge/ui/web/js/deluge-all/FilterPanel.js3
1 files changed, 2 insertions, 1 deletions
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']);