From 1f58addecf9e70414ab88c1db28c82dfe4510ea1 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 16 Jun 2016 17:03:25 +0100 Subject: [PATCH] Fix user dirty metadata being read-only in editor --- src/gui/html/elements/loot-plugin-editor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/html/elements/loot-plugin-editor.html b/src/gui/html/elements/loot-plugin-editor.html index ab8f22c4..111e222c 100644 --- a/src/gui/html/elements/loot-plugin-editor.html +++ b/src/gui/html/elements/loot-plugin-editor.html @@ -426,7 +426,7 @@ loot-editor-close newData.masterlist.dirty.map(this._dirtyInfoToRowData).forEach(tables[j].addReadOnlyRow, tables[j]); } if (tempData.userlist && tempData.userlist.dirty) { - tempData.userlist.dirty.map(this._dirtyInfoToRowData).forEach(tables[j].addReadOnlyRow, tables[j]); + tempData.userlist.dirty.map(this._dirtyInfoToRowData).forEach(tables[j].addRow, tables[j]); } } else { if (newData.masterlist && newData.masterlist[tables[j].parentElement.id]) {