summaryrefslogtreecommitdiffstats
path: root/shared/src/com/vaadin
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-03-06 14:55:15 +0200
committerVaadin Code Review <review@vaadin.com>2013-03-12 12:16:33 +0000
commit36a201f22f66989bf7a78ce8afce1ee64aaa0a22 (patch)
tree2e0957f0d65734e5bfe2e9242a196b387a44d21c /shared/src/com/vaadin
parent6922bc5b49c5551b289a5025ccd5901e2ac3aafc (diff)
downloadvaadin-framework-36a201f22f66989bf7a78ce8afce1ee64aaa0a22.tar.gz
vaadin-framework-36a201f22f66989bf7a78ce8afce1ee64aaa0a22.zip
Fixed focus and tab index handling for UI (#11129)
Change-Id: I80377792ade11946337e2900a7ea84209ae1d060
Diffstat (limited to 'shared/src/com/vaadin')
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/UIState.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/shared/src/com/vaadin/shared/ui/ui/UIState.java b/shared/src/com/vaadin/shared/ui/ui/UIState.java
index aa862ae31a..9abaf47f4b 100644
--- a/shared/src/com/vaadin/shared/ui/ui/UIState.java
+++ b/shared/src/com/vaadin/shared/ui/ui/UIState.java
@@ -15,10 +15,12 @@
*/
package com.vaadin.shared.ui.ui;
-import com.vaadin.shared.AbstractComponentState;
+import com.vaadin.shared.ui.TabIndexState;
-public class UIState extends AbstractComponentState {
+public class UIState extends TabIndexState {
{
primaryStyleName = "v-ui";
+ // Default is 1 for legacy reasons
+ tabIndex = 1;
}
} \ No newline at end of file