Index: lams_flex/LamsAuthor/src/assets/icons/maximise.png =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/icons/maximise.png,v diff -u -r1.1 -r1.2 Binary files differ Index: lams_flex/LamsAuthor/src/assets/icons/minimise.png =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/icons/minimise.png,v diff -u -r1.1 -r1.2 Binary files differ Index: lams_flex/LamsFlexCommon/src/org/lamsfoundation/lams/common/ui/components/ButtonPanel.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsFlexCommon/src/org/lamsfoundation/lams/common/ui/components/ButtonPanel.as,v diff -u -r1.1 -r1.2 --- lams_flex/LamsFlexCommon/src/org/lamsfoundation/lams/common/ui/components/ButtonPanel.as 4 Feb 2010 03:15:48 -0000 1.1 +++ lams_flex/LamsFlexCommon/src/org/lamsfoundation/lams/common/ui/components/ButtonPanel.as 4 Feb 2010 05:28:29 -0000 1.2 @@ -2,9 +2,8 @@ { import flash.events.MouseEvent; - import mx.binding.utils.BindingUtils; import mx.containers.Panel; - import mx.controls.Button; + import mx.controls.LinkButton; [Event(name="buttonClick", type="flash.events.Event")] @@ -21,7 +20,7 @@ [Bindable] public var buttonHeight:Number = 20; [Bindable] public var buttonIcon:Class; - public var mybtn:Button; + public var mybtn:LinkButton; public function ButtonPanel() { @@ -34,7 +33,7 @@ if( ! buttonLabel ) return; - mybtn = new Button(); + mybtn = new LinkButton(); mybtn.label = buttonLabel; mybtn.width = buttonWidth; mybtn.height = buttonHeight;