|
|
| black stripe at the bottom when i create a menu |
|
alex glez
Member #16,757
October 2017
|
Hello good I am making a program that incorporates menu. I use windows 11, allegro 5.X. |
|
Edgar Reynaldo
Major Reynaldo
May 2007
|
alex, do you have a simple code example that demonstrates this? Or does it always happen anytime you use a menu. Are you using the allegro menu or win32 menus? My Website! | EAGLE GUI Library Demos | My Deviant Art Gallery | Spiraloid Preview | A4 FontMaker | Skyline! (Missile Defense) Eagle and Allegro 5 binaries | Older Allegro 4 and 5 binaries | Allegro 5 compile guide |
|
alex glez
Member #16,757
October 2017
|
Hello Edgar, I use the allegro menus and whenever I run it it happens. I build it like this... ------------------------------------------------------------ ALLEGRO_MENU_INFO main_menu_info[] = ALLEGRO_START_OF_MENU("&Configuracion", 200), ALLEGRO_START_OF_MENU("&Tiempo de demora al pasar pagina", 205), { "&Exportar a la vez que procesa las fotos", 206, ALLEGRO_MENU_ITEM_DISABLED, NULL }, ALLEGRO_MENU_SEPARATOR, ALLEGRO_START_OF_MENU("&Nemesis", 300), ALLEGRO_START_OF_MENU("&Ayuda", 400), ALLEGRO_END_OF_MENU .. y en el main() menu = al_build_menu(main_menu_info); ----------------------------------------------------------------- Thanks a lot !! |
|
|