We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 615eea3 commit a8f5698Copy full SHA for a8f5698
gwt-material/src/main/java/gwt/material/design/client/ui/MaterialCheckBox.java
@@ -130,8 +130,11 @@ public void onClick(ClickEvent event) {
130
@Override
131
protected void onLoad() {
132
super.onLoad();
133
-
134
- this.getElement().getStyle().setDisplay(Display.BLOCK);
+ if(isVisible()) {
+ this.getElement().getStyle().setDisplay(Display.BLOCK);
135
+ }else {
136
+ this.getElement().getStyle().setDisplay(Display.NONE);
137
+ }
138
}
139
140
public String getOld() {
0 commit comments