DesignerMenu: Use shadow-type "none", change the submenu arrow. Issue #28220, patch from Alexey Torgashin.

git-svn-id: trunk@49255 -
This commit is contained in:
juha 2015-06-03 17:23:26 +00:00
parent 11612bcf6b
commit da03828c1c

View File

@ -415,9 +415,10 @@ begin
DMenuItem.SubMenuArrow.Name:='SubMenuArrow_' + DMenuItem.ID;
DMenuItem.SubMenuArrow.Parent:=DMenuItem.SelfPanel;
DMenuItem.SubMenuArrow.ArrowType:=atright;
DMenuItem.SubMenuArrow.Width:=20;
DMenuItem.SubMenuArrow.Height:=13;
DMenuItem.SubMenuArrow.ShadowType:=stout;
DMenuItem.SubMenuArrow.ArrowPointerAngle:=90;
DMenuItem.SubMenuArrow.ShadowType:=stNone;
DMenuItem.SubMenuArrow.Width:=14;
DMenuItem.SubMenuArrow.Height:=14;
DMenuItem.SubMenuArrow.Visible:=false;
DMenuItem.SubMenuArrow.OnMouseDown:=@MenuItemMouseDown;
DMenuItem.SubMenuArrow.OnDragOver:=@MenuItemDragOver;