Some tweaks to word drop down list

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@619 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-08-23 17:37:44 +00:00
parent c3e10f2ccf
commit dc9f08b311
5 changed files with 61 additions and 21 deletions
+2 -1
View File
@@ -67,7 +67,8 @@ SCRIPT_FUNCTION_WITH_DEP(combined_editor) {
// update the values if our input value is newer?
Age new_value_update = last_update_age();
FOR_EACH_2(v, values, nv, value_parts) {
if (v->value() != nv.first && v->last_update < new_value_update) {
//if (v->value() != nv.first && v->last_update < new_value_update) {
if (v->last_update < new_value_update) {
v->value.assign(nv.first);
v->update(ctx);
}