Bug: Options->Plugin empty

WIP 19.09.17

Hmmm…
Mine works fine…

Tell us about the details of your system please.

Dale had this issue this morning and deleting his Rhino/6.0 profile in HKCU from the registry fixed the issue. We’re still investigating what the culprit might be.

@John_Brock

Problem started around 2-3 weeks ago. I cannot pin it to an exact WIP version, since I have not been using it regularly.

System:

  • Lenovo W540
  • No third party plugins installed
  • I am having some UI customization: Main window title bar hidden, colors, location of prompt
  • Graphics:
    NVIDIA Corporation
    Quadro K2100M/PCIe/SSE2
    OpenGL version: 4.5.0 NVIDIA 369.59
    Render version: 4.5
    Shading Language: 4.50 NVIDIA
    Driver Date: 10-18-2016
    Driver Version: 21.21.13.6959
    Maximum Texture size: 16384 x 16384
    Z-Buffer depth: 24bits
    Stencil depth: 8bits
    Maximum Viewport size: 16384 x 16384
    Total Video Memory: 2 GB

Any other info that might help?

Read the comment above yours @silvano

this also solved the problem on my machine.

Cool!

We were able to track the issue down to Plug-ins created by the new version 6 visual studio plug-in template wizard in conjunction with the custom icon loading. It appears the wizard references the icons location incorrectly and thus the code that scales the icon to the DPI of the screen is tossing an exception. We are fixing both. Until then, if you have made a plug-in using the new wizard you’ll want to make sure to set the proper path to the icon.

This:

[assembly: PlugInDescription(DescriptionType.Icon, “Test.plugin-utility.ico”)]

should read this:

[assembly: PlugInDescription(DescriptionType.Icon, “Test.Icons.plugin-utility.ico”)]