diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-10-13 16:57:28 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-10-19 11:17:43 +0000 |
commit | e17fd8d27ddbdbd467d02c8b060c47b753931f7f (patch) | |
tree | d3814e59b5d686bb03ae36c6daa4407de8e93584 | |
parent | a44be5981e4ffddd885516c97541429cb3d04003 (diff) | |
download | vaadin-framework-7.5.8.tar.gz vaadin-framework-7.5.8.zip |
Remove call to setEnabled in Grid Sidebar constructor (#19126)7.5.8
Change-Id: Iaa69e6b59281f7d6b9d1cf00b3de746243a700cf
-rw-r--r-- | client/src/com/vaadin/client/widgets/Grid.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java index 4279b1c0c6..8e55a3f7e4 100644 --- a/client/src/com/vaadin/client/widgets/Grid.java +++ b/client/src/com/vaadin/client/widgets/Grid.java @@ -3191,8 +3191,6 @@ public class Grid<T> extends ResizeComposite implements openCloseButton = new Button(); - setEnabled(grid.isEnabled()); - openCloseButton.addClickHandler(openCloseButtonHandler); rootContainer.add(openCloseButton); |