mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-22 23:16:53 +00:00
Merge pull request #1724 from cehmke/select-refresh-children-first
SelectWidget: Update selected value if children have been refreshed
This commit is contained in:
commit
cf3b63c13c
@ -127,10 +127,11 @@ SelectWidget.prototype.refresh = function(changedTiddlers) {
|
|||||||
return true;
|
return true;
|
||||||
// If the target tiddler value has changed, just update setting and refresh the children
|
// If the target tiddler value has changed, just update setting and refresh the children
|
||||||
} else {
|
} else {
|
||||||
if(changedTiddlers[this.selectTitle]) {
|
var childrenRefreshed = this.refreshChildren(changedTiddlers);
|
||||||
|
if(changedTiddlers[this.selectTitle] || childrenRefreshed) {
|
||||||
this.setSelectValue();
|
this.setSelectValue();
|
||||||
}
|
}
|
||||||
return this.refreshChildren(changedTiddlers);
|
return childrenRefreshed;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user