municipio=tk.StringVar()
tk.Label(raiz, text='Municipio', foreground='blue', font=('Times',15,"normal")).grid(row=11, column=0, sticky='w,e', padx=5, pady=5)
tk.OptionMenu(raiz, municipio, *listamunicipios).grid(row=11,column=1, sticky='w,e', padx=5, pady=5)
Hello. I run into the problem that the list where the elements for the optionmenu come from contains 60 options. When I deploy the optionmenu, it closes immediately because it does not fit on the screen. Any way to limit the elements that show and be able to move with the keys or mouse ?. Thanks.