Module: deluge Branch: master Commit: 3fcdcc8eec2d5ca2ea31a9009945d383c57b7392
Author: Damien Churchill <[email protected]> Date: Mon Apr 19 23:17:27 2010 +0100 couple of tweaks to the plugin page layout --- .../web/js/deluge-all/preferences/PluginsPage.js | 21 +++++++++++++------ 1 files changed, 14 insertions(+), 7 deletions(-) diff --git a/deluge/ui/web/js/deluge-all/preferences/PluginsPage.js b/deluge/ui/web/js/deluge-all/preferences/PluginsPage.js index 22540fe..63da922 100644 --- a/deluge/ui/web/js/deluge-all/preferences/PluginsPage.js +++ b/deluge/ui/web/js/deluge-all/preferences/PluginsPage.js @@ -200,14 +200,21 @@ Deluge.preferences.Plugins = Ext.extend(Ext.Panel, { }] }) }); - - var fieldset = this.add({ - xtype: 'fieldset', - border: false, - region: 'south', - title: _('Info'), + + var pp = this.pluginInfo = this.add({ + xtype: 'panel', + border: true, + height: 160, + region: 'south', + margins: '0 5 5 5' + }); + var fieldset = pp.add({ + xtype: 'fieldset', + title: _('Info'), + border: false, autoHeight: true, - labelWidth: 1 + labelWidth: 1, + style: 'margin-top: 5px;', }); this.pluginInfo = fieldset.add({ xtype: 'panel', -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
