diff options
author | Sebastian Nyholm <sebastian@vaadin.com> | 2014-05-27 14:46:47 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-08-18 11:34:03 +0000 |
commit | 1020faa337eddeb07f141cb7ef12fbb20bd2ded2 (patch) | |
tree | 3fe93c549eed111988c9c8f5d057b8cbadd5c9f0 /shared | |
parent | a960cfd12b8fb42ae78e39ffb61c04e3a3b831bf (diff) | |
download | vaadin-framework-1020faa337eddeb07f141cb7ef12fbb20bd2ded2.tar.gz vaadin-framework-1020faa337eddeb07f141cb7ef12fbb20bd2ded2.zip |
Fixes DragAndDropWrapper does not support choosing a custom component as the drag image (#13836)
Amend : Fixes the comments for the last commit.
Amend 2: Fixes a nullpointer found in a certain test scenario
Change-Id: I72327f5f8ab9e46d88e1ebed8f1db3a7da39d7d8
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/draganddropwrapper/DragAndDropWrapperConstants.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/draganddropwrapper/DragAndDropWrapperConstants.java b/shared/src/com/vaadin/shared/ui/draganddropwrapper/DragAndDropWrapperConstants.java index 8dd8ef513e..9dda86ad73 100644 --- a/shared/src/com/vaadin/shared/ui/draganddropwrapper/DragAndDropWrapperConstants.java +++ b/shared/src/com/vaadin/shared/ui/draganddropwrapper/DragAndDropWrapperConstants.java @@ -25,4 +25,6 @@ public class DragAndDropWrapperConstants implements Serializable { @Deprecated public static final String DRAG_START_MODE = "dragStartMode"; + public static final String DRAG_START_COMPONENT_ATTRIBUTE = "dragStartComponent"; + } |