mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 04:24:27 +00:00
fix a bug in setValue for the RadioGroup
This commit is contained in:
parent
82a4367aa9
commit
a62c545d4a
@ -777,7 +777,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);
|
||||
item.setValue((item.originalValue == v));
|
||||
});
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user