summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/LoginForm.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2009-05-15 08:07:44 +0000
committerArtur Signell <artur.signell@itmill.com>2009-05-15 08:07:44 +0000
commit172d7a935c1829c5e0b95a6b8be6ae43d99c10c0 (patch)
tree7d4f882629816aad34b78756cdda30de1b534aee /src/com/vaadin/ui/LoginForm.java
parentc382d34899b8acf3df34cd6d8ef01c1c80eef980 (diff)
downloadvaadin-framework-172d7a935c1829c5e0b95a6b8be6ae43d99c10c0.tar.gz
vaadin-framework-172d7a935c1829c5e0b95a6b8be6ae43d99c10c0.zip
Additional fix for #2954 - Change default theme to reindeer
svn changeset:7824/svn branch:6.0
Diffstat (limited to 'src/com/vaadin/ui/LoginForm.java')
-rw-r--r--src/com/vaadin/ui/LoginForm.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/com/vaadin/ui/LoginForm.java b/src/com/vaadin/ui/LoginForm.java
index 3a8103e1a6..6e2c06c24a 100644
--- a/src/com/vaadin/ui/LoginForm.java
+++ b/src/com/vaadin/ui/LoginForm.java
@@ -13,6 +13,7 @@ import com.vaadin.terminal.ApplicationResource;
import com.vaadin.terminal.DownloadStream;
import com.vaadin.terminal.ParameterHandler;
import com.vaadin.terminal.URIHandler;
+import com.vaadin.terminal.gwt.server.AbstractApplicationServlet;
/**
* LoginForm is a Toolkit component to handle common problem among Ajax
@@ -125,12 +126,14 @@ public class LoginForm extends CustomComponent {
*/
protected byte[] getLoginHTML() {
+ String defaultThemeName = AbstractApplicationServlet.getDefaultTheme();
+
String theme = getApplication().getMainWindow().getTheme();
String guessedThemeUri = getApplication().getURL() + "VAADIN/themes/"
- + (theme == null ? "default" : theme) + "/styles.css";
+ + (theme == null ? defaultThemeName : theme) + "/styles.css";
String guessedThemeUri2 = getApplication().getURL()
- + "../VAADIN/themes/" + (theme == null ? "default" : theme)
- + "/styles.css";
+ + "../VAADIN/themes/"
+ + (theme == null ? defaultThemeName : theme) + "/styles.css";
String appUri = getApplication().getURL().toString();