increase status column size

This commit is contained in:
Damien Churchill 2009-03-21 11:50:57 +00:00
parent 6b7302ed4b
commit 6adb10b62a
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ var renderHost = function(value, p, r) {
Deluge.Connections.Grid = new Ext.grid.GridPanel({ Deluge.Connections.Grid = new Ext.grid.GridPanel({
store: Deluge.Connections.Store, store: Deluge.Connections.Store,
columns: [ columns: [
{header: 'Status', width: 55, sortable: true, renderer: Deluge.Formatters.plain, dataIndex: 'status'}, {header: 'Status', width: 65, sortable: true, renderer: Deluge.Formatters.plain, dataIndex: 'status'},
{id:'host', header: 'Host', width: 150, sortable: true, renderer: renderHost, dataIndex: 'host'}, {id:'host', header: 'Host', width: 150, sortable: true, renderer: renderHost, dataIndex: 'host'},
{header: 'Version', width: 75, sortable: true, renderer: Deluge.Formatters.plain, dataIndex: 'version'} {header: 'Version', width: 75, sortable: true, renderer: Deluge.Formatters.plain, dataIndex: 'version'}
], ],