Hello,
On the latest nightly (but also occurring earlier but not on 3.0), we have the effect where the size of the tab changes when it is selected.
This happens when we set the bold title style together with a large title and is probably caused by that.
final Tab preferencesTab = new Tab("this is a long title");
DynamicForm preferencesForm = new DynamicForm();
CheckboxItem useTabsCheckbox = new CheckboxItem();
useTabsCheckbox.setTitle("Use Smart GWT tabs");
preferencesForm.setFields(useTabsCheckbox);
preferencesTab.setPane(preferencesForm);
preferencesTab.setTitleStyle("font-weight:bold");
You can see, at first the last tab has size X, when it is selected by the user it has size X+Y.
We where wondering if this is an issue or not?
On the latest nightly (but also occurring earlier but not on 3.0), we have the effect where the size of the tab changes when it is selected.
This happens when we set the bold title style together with a large title and is probably caused by that.
final Tab preferencesTab = new Tab("this is a long title");
DynamicForm preferencesForm = new DynamicForm();
CheckboxItem useTabsCheckbox = new CheckboxItem();
useTabsCheckbox.setTitle("Use Smart GWT tabs");
preferencesForm.setFields(useTabsCheckbox);
preferencesTab.setPane(preferencesForm);
preferencesTab.setTitleStyle("font-weight:bold");
You can see, at first the last tab has size X, when it is selected by the user it has size X+Y.
We where wondering if this is an issue or not?
Comment