mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-18 21:40:46 +00:00
CSS output without vars by default
This commit is contained in:
parent
b1016a419f
commit
ee07df6a26
@ -347,7 +347,7 @@
|
|||||||
<section id="css">
|
<section id="css">
|
||||||
<option id="show_alert" type="bool" default="true" />
|
<option id="show_alert" type="bool" default="true" />
|
||||||
<option id="pixel_scale" type="int" default="1" />
|
<option id="pixel_scale" type="int" default="1" />
|
||||||
<option id="with_vars" type="bool" default="true" />
|
<option id="with_vars" type="bool" default="false" />
|
||||||
<option id="generate_html" type="bool" default="false" />
|
<option id="generate_html" type="bool" default="false" />
|
||||||
</section>
|
</section>
|
||||||
<section id="webp">
|
<section id="webp">
|
||||||
|
@ -34,7 +34,8 @@ class CssFormat : public FileFormat {
|
|||||||
class CssOptions : public FormatOptions {
|
class CssOptions : public FormatOptions {
|
||||||
public:
|
public:
|
||||||
CssOptions() : pixelScale(1), gutterSize(0),
|
CssOptions() : pixelScale(1), gutterSize(0),
|
||||||
generateHtml(false), withVars(true) { }
|
generateHtml(false),
|
||||||
|
withVars(false) { }
|
||||||
int pixelScale;
|
int pixelScale;
|
||||||
int gutterSize;
|
int gutterSize;
|
||||||
bool generateHtml;
|
bool generateHtml;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user