mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-05 16:08:40 +00:00
fix a bug in setValue for the RadioGroup
This commit is contained in:
parent
82a4367aa9
commit
a62c545d4a
1 changed files with 1 additions and 1 deletions
|
@ -777,7 +777,7 @@ Ext.override(Ext.form.RadioGroup, {
|
||||||
setValue: function(v) {
|
setValue: function(v) {
|
||||||
if (!this.items.each) return;
|
if (!this.items.each) return;
|
||||||
this.items.each(function(item) {
|
this.items.each(function(item) {
|
||||||
item.setValue((item.getRawValue() === 'true') == v);
|
item.setValue((item.originalValue == v));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue