Object parent argument added to Plugin.{Data,Object}.preferences() call.
This commit is contained in:
parent
bc9e14799f
commit
9d0387c4dc
|
@ -108,7 +108,7 @@ namespace LAview.Desktop {
|
||||||
for (int i = indices.length; i > 0;)
|
for (int i = indices.length; i > 0;)
|
||||||
foreach (var p in AppCore.core.data_plugins.entries)
|
foreach (var p in AppCore.core.data_plugins.entries)
|
||||||
if (indices[--i] == 0) {
|
if (indices[--i] == 0) {
|
||||||
p.value.preferences();
|
p.value.preferences(dialog);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -118,7 +118,7 @@ namespace LAview.Desktop {
|
||||||
for (int i = indices.length; i > 0;)
|
for (int i = indices.length; i > 0;)
|
||||||
foreach (var p in AppCore.core.object_plugins.entries)
|
foreach (var p in AppCore.core.object_plugins.entries)
|
||||||
if (indices[--i] == 0) {
|
if (indices[--i] == 0) {
|
||||||
p.value.preferences();
|
p.value.preferences(dialog);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue