Obscure display bug with rs.PopupMenu()

This is totally inconsequential, but I thought I’d report it as something to be fixed someday - as it seems to be recent behavior.

I have a couple of scripts that use rs.PopupMenu() to choose some sort of option and I notice that when running it, there is a little white dot that comes up while the menu is on screen…

image

Here is a script to test if you want to try - set up a dark background to see it…

import rhinoscriptsyntax as rs

cl=["A","B","C","D","None of the Above"]
choice=rs.PopupMenu(cl)
print cl[choice]

This does not happen with the vb Rhinoscript version here.

–Mitch