Hi @merkvilson,
Please give more information about your setup and provide a code snippet that shows your issue. I'm not able to reproduce your issue using the code snippet below in C4D 2024.2
There's a c4d.POPUP_ALLOW_FILTERING flag that you can pass to the ShowPopupDialog() function to allow showing the filtering entry in your menu:
c4d.gui.ShowPopupDialog(cd=None, bc=menu, x=300, y=300, flags=c4d.POPUP_ALLOW_FILTERING)
Cheers,
Ilia
import c4d
def main() -> None:
menu = c4d.BaseContainer()
for idx in range(5):
menu.InsData(c4d.FIRST_POPUP_ID + idx, f"Item {idx}")
c4d.gui.ShowPopupDialog(cd=None, bc=menu, x=300, y=300)
# c4d.gui.ShowPopupDialog(cd=None, bc=menu, x=400, y=300, flags=c4d.POPUP_ALLOW_FILTERING)
if __name__ == '__main__':
main()
[image: 1702636223773-03915845-5d04-4cf4-a79c-1cb342e2aa60-image.png]