Author: nbelaevski
Date: 2007-11-11 21:56:22 -0500 (Sun, 11 Nov 2007)
New Revision: 3896
Modified:
trunk/ui/drag-drop/src/main/java/org/richfaces/component/UIDragSupport.java
trunk/ui/drag-drop/src/main/java/org/richfaces/component/UIDropSupport.java
Log:
http://jira.jboss.com/jira/browse/RF-1331
Modified: trunk/ui/drag-drop/src/main/java/org/richfaces/component/UIDragSupport.java
===================================================================
--- trunk/ui/drag-drop/src/main/java/org/richfaces/component/UIDragSupport.java 2007-11-12
00:45:24 UTC (rev 3895)
+++ trunk/ui/drag-drop/src/main/java/org/richfaces/component/UIDragSupport.java 2007-11-12
02:56:22 UTC (rev 3896)
@@ -69,7 +69,6 @@
}
public void queueEvent(FacesEvent event) {
- super.queueEvent(event);
if (event instanceof DragEvent) {
if (isImmediate()) {
event.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
@@ -77,6 +76,7 @@
event.setPhaseId(PhaseId.INVOKE_APPLICATION);
}
}
+ super.queueEvent(event);
}
public String getResolvedDragIndicator(FacesContext facesContext) {
Modified: trunk/ui/drag-drop/src/main/java/org/richfaces/component/UIDropSupport.java
===================================================================
--- trunk/ui/drag-drop/src/main/java/org/richfaces/component/UIDropSupport.java 2007-11-12
00:45:24 UTC (rev 3895)
+++ trunk/ui/drag-drop/src/main/java/org/richfaces/component/UIDropSupport.java 2007-11-12
02:56:22 UTC (rev 3896)
@@ -69,7 +69,6 @@
}
public void queueEvent(FacesEvent event) {
- super.queueEvent(event);
if (event instanceof DropEvent) {
if (isImmediate()) {
event.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
@@ -77,5 +76,6 @@
event.setPhaseId(PhaseId.INVOKE_APPLICATION);
}
}
+ super.queueEvent(event);
}
}