Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS General Discussion » small cosmetical fix in CExtPopupMenuWnd Collapse All
Subject Author Date
Slawa Hahn Mar 9, 2006 - 12:57 AM

hi,

i recognized a small cosmetical issue in popup menus:
if the mouse is first over an enabled item and then moves to an disabled item,
the enabled item has still the focus.

fix:
CExtPopupMenuWnd::_OnMouseMove
.
.
.

line: 12711

if( (!mi.IsEnabled()) || mi.IsSeparator() )
<{>
    <_ItemFocusCancel( TRUE );>
    return false;
<}>

king regards

Slaham

Technical Support Mar 9, 2006 - 9:36 AM

Thank you for your suggestion. You are right. The menu’s code is updated.