aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2013-04-24 15:15:03 +0300
committerVaadin Code Review <review@vaadin.com>2013-04-24 16:53:15 +0000
commitbb248c0a5e41eefe3727ae50a809d135f0a7d4aa (patch)
tree4d4d1499e94b23e703bb0af23aaac23491b2b815
parent36651289a10d1a3b7e31fe188c82541c486baa2b (diff)
downloadvaadin-framework-bb248c0a5e41eefe3727ae50a809d135f0a7d4aa.tar.gz
vaadin-framework-bb248c0a5e41eefe3727ae50a809d135f0a7d4aa.zip
Use scheduleFinally for pending variable changes (#11707)
Change-Id: Ie87f0042823731a4a3ab5a10e3c23eb62ce57f37
-rw-r--r--client/src/com/vaadin/client/ApplicationConnection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java
index 375beb9dda..dc8dbcaf43 100644
--- a/client/src/com/vaadin/client/ApplicationConnection.java
+++ b/client/src/com/vaadin/client/ApplicationConnection.java
@@ -2416,7 +2416,7 @@ public class ApplicationConnection {
public void sendPendingVariableChanges() {
if (!deferedSendPending) {
deferedSendPending = true;
- Scheduler.get().scheduleDeferred(sendPendingCommand);
+ Scheduler.get().scheduleFinally(sendPendingCommand);
}
}