Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Button label getting clipped when button icon height is set too small

    Smartgwt version Version v9.1p_2014-06-03/Enterprise Deployment (2014-06-03)
    Browser : IE/FF/Chrome

    Code:
    import com.google.gwt.core.client.EntryPoint;
    import com.smartgwt.client.widgets.Button;
    
    public class ButtonLabelTest implements EntryPoint {
    
        public void onModuleLoad() {
        
            Button button = new Button("Button");
            button.setIcon("../sc/skins/EnterpriseBlue/images/Menu/menu_button.png");
            button.setIconHeight(4);
            button.setIconWidth(7);
            button.setIconOrientation("right");
            button.draw();
        } 
    }
    Attached Files

    #2
    Thanks for the report. We're taking a look and will follow up when we have more information

    Regards
    Isomorphic Software

    Comment


      #3
      This issue should now be resolved. Please try the next nightly build dated June 24 or above.

      Regards
      Isomorphic Software

      Comment


        #4
        I'll try the new build. Thank you for fixing it.

        Comment

        Working...
        X