diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-05-22 13:59:44 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-05-28 08:40:46 +0000 |
commit | cb1f63b8606ae23088a62f26dc8979885c5cd19c (patch) | |
tree | da767ba5c7209a4f81473ade492905c7580ad458 /shared/src | |
parent | 87018cdca42491d192fa3ecdeb6d64d952cee517 (diff) | |
download | vaadin-framework-cb1f63b8606ae23088a62f26dc8979885c5cd19c.tar.gz vaadin-framework-cb1f63b8606ae23088a62f26dc8979885c5cd19c.zip |
Send window mode changes to the server immediately (#11737)
Change-Id: Icfaa8f97824d8ed92eaee786cee8c92083dc1084
Diffstat (limited to 'shared/src')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java b/shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java index cfb10ad86a..b43765274e 100644 --- a/shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/window/WindowServerRpc.java @@ -15,13 +15,11 @@ */ package com.vaadin.shared.ui.window; -import com.vaadin.shared.annotations.Delayed; import com.vaadin.shared.communication.ServerRpc; import com.vaadin.shared.ui.ClickRpc; public interface WindowServerRpc extends ClickRpc, ServerRpc { - @Delayed(lastOnly = true) public void windowModeChanged(WindowMode newState); }
\ No newline at end of file |