I created a component in SKU 2026 it doesn’t appear in the “Component Option” Window. It always says: "no component selected, select one or two components to view their option.
No matter what i do, i can select the component but it won’t appear in the window. I don’t have this problem in the “Component Attribute” Window. There i can select the Component and it will show up.
It’s a bug. Drop this ruby, posted by the great @DanRathbun in the linked thread, into the extensions folder. It will run on startup and should fix your problem.
unless Sketchup::Model.method_defined? :deleted?
class Sketchup::Model
def deleted?
!valid?()
end
end # class
end # unless