Author: nbelaevski
Date: 2007-11-12 11:00:19 -0500 (Mon, 12 Nov 2007)
New Revision: 3924
Modified:
branches/3.1.x/ui/drag-drop/src/main/java/org/richfaces/component/UIDragSupport.java
branches/3.1.x/ui/drag-drop/src/main/java/org/richfaces/component/UIDropSupport.java
Log:
Fix for
http://jira.jboss.com/jira/browse/RF-1331 merged
Modified:
branches/3.1.x/ui/drag-drop/src/main/java/org/richfaces/component/UIDragSupport.java
===================================================================
---
branches/3.1.x/ui/drag-drop/src/main/java/org/richfaces/component/UIDragSupport.java 2007-11-12
15:24:53 UTC (rev 3923)
+++
branches/3.1.x/ui/drag-drop/src/main/java/org/richfaces/component/UIDragSupport.java 2007-11-12
16:00:19 UTC (rev 3924)
@@ -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:
branches/3.1.x/ui/drag-drop/src/main/java/org/richfaces/component/UIDropSupport.java
===================================================================
---
branches/3.1.x/ui/drag-drop/src/main/java/org/richfaces/component/UIDropSupport.java 2007-11-12
15:24:53 UTC (rev 3923)
+++
branches/3.1.x/ui/drag-drop/src/main/java/org/richfaces/component/UIDropSupport.java 2007-11-12
16:00:19 UTC (rev 3924)
@@ -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);
}
}