Skip to content

Commit 1c6c060

Browse files
committed
Fixed MaterialTooltip default delay shouldn't be 0 #728
1 parent 71d43d9 commit 1c6c060

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gwt-material/src/main/java/gwt/material/design/client/js/JsTooltipOptions.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@ private JsTooltipOptions() {}
3333
@JsOverlay
3434
public static final JsTooltipOptions create() {
3535
JsTooltipOptions options = new JsTooltipOptions();
36-
options.delay = 0;
36+
options.delay = 350;
3737
options.position = Position.BOTTOM.getCssName();
3838
return options;
3939
}
4040

41-
4241
@JsProperty
4342
public String tooltip;
4443

0 commit comments

Comments
 (0)