No buttons visible in the ComboListBox

image

Anyone else see this?

Thanks,

Dan

I noticed that if you slide the side of the box over until it’s very narrow you can expose the OK button.

Hi @DanBayn,

Can you provide some sample code?

– Dale

Hi @dale,

This is the example out of the help file:

import rhinoscriptsyntax as rs
layers = rs.LayerNames()
if layers:
    layer = rs.ComboListBox(layers, "Select current layer")
    if layer: rs.CurrentLayer(layer)

I tested it on my desktop and laptop. The buttons are buried on both.

Thanks,

Dan

Yep, got that here too…

image

If I pull the width around I see an OK on the left…

image

I guess this is a glitch on how the new method is programmed in ETO…

–Mitch

Got it, thanks.

https://mcneel.myjetbrains.com/youtrack/issue/RH-41797

– Dale

I see that the ComboListbox changed in the latest release. Now it truly works like a list box. I like it, and the buttons are accessible!

Thanks for this quick fix.

Dan