Browse Source

Use sprites for all themes (#9299)

tags/7.0.0.beta1
Artur Signell 11 years ago
parent
commit
f3b54b9192

+ 1
- 1
theme-compiler/src/com/vaadin/buildhelpers/CompileTheme.java View File

@@ -33,7 +33,7 @@ public class CompileTheme {
"the version to add to the compiled theme");
options.addOption("f", "theme-folder", true,
"the folder containing the theme");
options.addOption("s", "sprites", true, "use smartsprites");
options.addOption("s", "sprites", false, "use smartsprites");
CommandLineParser parser = new PosixParser();
CommandLine params = parser.parse(options, args);
if (!params.hasOption("theme") || !params.hasOption("theme-folder")) {

+ 1
- 0
themes-compiled/build.xml View File

@@ -80,6 +80,7 @@
<arg value="${theme.result.dir}" />
<arg value="--theme-version" />
<arg value="${vaadin.version}" />
<arg value="--sprites" />
<jvmarg value="-Xss8M" />
<jvmarg value="-XX:MaxPermSize=256M" />
<jvmarg value="-Djava.awt.headless=true" />

Loading…
Cancel
Save