Occasionally, I get popup menus much higher than normal ones:
http://www.emagsoftware.it/public/menubug.png
EMG
http://www.emagsoftware.it/public/menubug.png
EMG
Enrico,
We are checking it, thanks
I just also noticed that, in the normal conditions, the menu items are vertically closer than in the previous release. ![]()
This is not the first time that menu changes its look. Can we finally have a stable one, please?
EMG
Please compare current menu items height with the one of other programs.
EMG
Enrico,
It is fixed and it will be included in next FWH version
Great! Can you send me the update libs, please?
EMG
already sent
Thank you! ![]()
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oMenu
MENU oMenu 2007
MENUITEM "Test"
MENU
MENUITEM "Test"
MENUITEM "Test"
MENUITEM "Test"
ENDMENU
ENDMENU
DEFINE WINDOW oWnd MDI;
TITLE "MDI Test";
MENU oMenu
ACTIVATE WINDOW oWnd;
ON INIT CREATECHILD( oWnd )
RETURN NIL
STATIC FUNCTION CREATECHILD( oMdi )
LOCAL oWnd, oMenu
MENU oMenu 2007
MENUITEM "Test"
MENU
MENUITEM "Test"
MENUITEM "Test"
MENUITEM "Test"
ENDMENU
ENDMENU
DEFINE WINDOW oWnd MDICHILD OF oMdi;
TITLE "MDI Child Test";
MENU oMenu
ACTIVATE WINDOW oWnd;
VALID !GETKEYSTATE( VK_ESCAPE )
RETURN NILAny workaround?
EMG
STATIC FUNCTION CREATECHILD( oMdi )
LOCAL oWnd, oMenu
MENU oMenu 2007
MENUITEM "Test"
MENU
MENUITEM "Test "
MENUITEM "Test"
MENUITEM "Test"
ENDMENU
ENDMENUDoesn't work for me... ![]()
EMG
Use a dot at the end:
MENUITEM "Test ."
or another character
Sorry, no change.
EMG