Object parent argument added to Plugin.{Data,Object}.preferences() call.

This commit is contained in:
Kolan Sh 2018-04-27 10:09:10 +03:00
parent bc9e14799f
commit 9d0387c4dc
1 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ namespace LAview.Desktop {
for (int i = indices.length; i > 0;)
foreach (var p in AppCore.core.data_plugins.entries)
if (indices[--i] == 0) {
p.value.preferences();
p.value.preferences(dialog);
break;
}
}
@ -118,7 +118,7 @@ namespace LAview.Desktop {
for (int i = indices.length; i > 0;)
foreach (var p in AppCore.core.object_plugins.entries)
if (indices[--i] == 0) {
p.value.preferences();
p.value.preferences(dialog);
break;
}
}