ソースを参照

Use sprites for all themes (#9299)

tags/7.0.0.beta1
Artur Signell 11年前
コミット
f3b54b9192
2個のファイルの変更2行の追加1行の削除
  1. 1
    1
      theme-compiler/src/com/vaadin/buildhelpers/CompileTheme.java
  2. 1
    0
      themes-compiled/build.xml

+ 1
- 1
theme-compiler/src/com/vaadin/buildhelpers/CompileTheme.java ファイルの表示

@@ -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 ファイルの表示

@@ -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" />

読み込み中…
キャンセル
保存