mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 20:44:50 +00:00
fix the dodgy splitter positions on the spinners
This commit is contained in:
parent
8ad774cd3c
commit
0c4cc4d0e2
@ -32,7 +32,6 @@ Copyright:
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function() {
|
|
||||||
Ext.deluge.PreferencesWindow = Ext.extend(Ext.Window, {
|
Ext.deluge.PreferencesWindow = Ext.extend(Ext.Window, {
|
||||||
constructor: function(config) {
|
constructor: function(config) {
|
||||||
config = Ext.apply({
|
config = Ext.apply({
|
||||||
@ -44,7 +43,7 @@ Copyright:
|
|||||||
closable: true,
|
closable: true,
|
||||||
iconCls: 'x-deluge-preferences',
|
iconCls: 'x-deluge-preferences',
|
||||||
plain: true,
|
plain: true,
|
||||||
resizable: true,
|
resizable: false,
|
||||||
title: _('Preferences'),
|
title: _('Preferences'),
|
||||||
|
|
||||||
currentPage: false,
|
currentPage: false,
|
||||||
@ -114,7 +113,8 @@ Copyright:
|
|||||||
store.loadData([[name]], true);
|
store.loadData([[name]], true);
|
||||||
page['bodyStyle'] = 'margin: 5px';
|
page['bodyStyle'] = 'margin: 5px';
|
||||||
this.pages[name] = this.configPanel.add(page);
|
this.pages[name] = this.configPanel.add(page);
|
||||||
this.pages[name].hide();
|
this.pages[name].setWidth(365);
|
||||||
|
this.pages[name].setHeight(410);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -157,4 +157,3 @@ Copyright:
|
|||||||
});
|
});
|
||||||
|
|
||||||
Deluge.Preferences = new Ext.deluge.PreferencesWindow();
|
Deluge.Preferences = new Ext.deluge.PreferencesWindow();
|
||||||
})();
|
|
Loading…
x
Reference in New Issue
Block a user