We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc6c044 + 66b6df8 commit 4a2e5ebCopy full SHA for 4a2e5eb
1 file changed
Replanetizer/Frames/ModelFrame.cs
@@ -286,10 +286,10 @@ private void RenderInstanceList()
286
{
287
foreach (ModelObject obj in selectedObjectInstances)
288
289
- string objName = "Instance";
+ string objName = $"Instance##{obj.globalID}";
290
if (obj is Moby mob)
291
292
- objName = $"Instance [" + GetStringFromID(mob.mobyID) + "]";
+ objName = $"Instance [{GetStringFromID(mob.mobyID)}]##{mob.globalID}";
293
}
294
295
if (ImGui.Button(objName))
0 commit comments