Did a recent Smart GWT upgrade to rid of the issue with button hover in Google Chrome, as a result we are now getting an issue in Internet Explorer with the button default size not being large enough for the text within.
Code:
	
	VLayout layout = new VLayout();
DynamicForm form = new DynamicForm();
layout.addMember(form);
ButtonItem iconButton = new ButtonItem();
iconButton.setTitle("Test Button");
form.setItems(iconButton);
layout.draw();
| GWT Version : | 2.7.0 | 
| SmartGWT Version : | 5.1p | 
| SmartGWT Build Date : | 05/10/2017 10:29 | 
| Internet Explorer 11 | 11.608.15063.0 | 
Comment