summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorPekka Hyvönen <pekka@vaadin.com>2017-05-10 14:42:31 +0300
committerIlia Motornyi <elmot@vaadin.com>2017-05-10 14:42:31 +0300
commitcbb4393847f02fdbdcd64528918aeacbdc5565e3 (patch)
treeb6003782b956f5f1f9aed2f1d4707d383515a810 /server
parent624a9594b55f0b35e75b9aefd80a97049bc51eed (diff)
downloadvaadin-framework-cbb4393847f02fdbdcd64528918aeacbdc5565e3.tar.gz
vaadin-framework-cbb4393847f02fdbdcd64528918aeacbdc5565e3.zip
Fix partly missing drag image regression on Safari
Doesn't fix #9261, drag image missing on Safari when dragging grid row because that has position: absolute and offset.
Diffstat (limited to 'server')
-rw-r--r--server/src/main/java/com/vaadin/event/dnd/ButtonDragSource.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/src/main/java/com/vaadin/event/dnd/ButtonDragSource.java b/server/src/main/java/com/vaadin/event/dnd/ButtonDragSource.java
index 4c681f5331..3d0d93dfa2 100644
--- a/server/src/main/java/com/vaadin/event/dnd/ButtonDragSource.java
+++ b/server/src/main/java/com/vaadin/event/dnd/ButtonDragSource.java
@@ -15,6 +15,7 @@
*/
package com.vaadin.event.dnd;
+import com.vaadin.annotations.Widgetset;
import com.vaadin.shared.ui.dnd.ButtonDragSourceState;
import com.vaadin.ui.Button;
@@ -24,6 +25,7 @@ import com.vaadin.ui.Button;
* @author Vaadin Ltd.
* @since 8.1
*/
+@Widgetset("com.vaadin.DefaultWidgetSet")
public class ButtonDragSource extends DragSourceExtension<Button> {
public ButtonDragSource(Button target) {