mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
fix a bug in the radio group setValue when the buttons haven't been rendered yet
This commit is contained in:
parent
9762853d32
commit
3b810f5ce3
1 changed files with 1 additions and 0 deletions
|
@ -775,6 +775,7 @@ Ext.override(Ext.form.RadioGroup, {
|
|||
},
|
||||
|
||||
setValue: function(v) {
|
||||
if (!this.items.each) return;
|
||||
this.items.each(function(item) {
|
||||
item.setValue((item.getRawValue() === 'true') == v);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue