diff options
author | John Ahlroos <john@vaadin.com> | 2013-08-12 14:52:17 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-08-12 12:29:54 +0000 |
commit | 186432e09d50435e3a85b9617e2b9d2ec4c2cc63 (patch) | |
tree | 96d7c773515aa7cc7da73e12808cda22e9c5e994 | |
parent | 650dae3aeab76273413c39fb521ce0252ec0e162 (diff) | |
download | vaadin-framework-186432e09d50435e3a85b9617e2b9d2ec4c2cc63.tar.gz vaadin-framework-186432e09d50435e3a85b9617e2b9d2ec4c2cc63.zip |
Fixed regression where page title was not updated #12353
Page title was moved to PageState in #11054 causing the UIConnector
state change handling to never trigger an update.
Change-Id: I592d316f99b40950f7ce4dd92e3ef48f835f29df
-rw-r--r-- | client/src/com/vaadin/client/ui/ui/UIConnector.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/ui/UIConnector.java b/client/src/com/vaadin/client/ui/ui/UIConnector.java index 460cde5522..ba291e7e1f 100644 --- a/client/src/com/vaadin/client/ui/ui/UIConnector.java +++ b/client/src/com/vaadin/client/ui/ui/UIConnector.java @@ -640,7 +640,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector configurePolling(); } - if (stateChangeEvent.hasPropertyChanged("title")) { + if (stateChangeEvent.hasPropertyChanged("pageState.title")) { com.google.gwt.user.client.Window .setTitle(getState().pageState.title); } |