diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-07-16 18:18:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-07-16 18:18:22 +0300 |
commit | 07e401fb2335d2372a93f37317f144449f7e872b (patch) | |
tree | be531ab11e3f57705d1167f1f8d693906208b87a /src/gui/theme.cpp | |
parent | 7cd117790755de302be9f750b95b5bd18a5636bd (diff) | |
download | plus-07e401fb2335d2372a93f37317f144449f7e872b.tar.gz plus-07e401fb2335d2372a93f37317f144449f7e872b.tar.bz2 plus-07e401fb2335d2372a93f37317f144449f7e872b.tar.xz plus-07e401fb2335d2372a93f37317f144449f7e872b.zip |
Add new dye type A.
Same as type S for colors + alpha channel.
Example:
equipment/feet/boots.png|A:#3c3c3cff,40332d40,4d4d4dff,5e4a3d40
here colors in format RRGGBBAA.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r-- | src/gui/theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index e01799ea7..108d736cd 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -851,7 +851,7 @@ void Theme::loadColors(std::string file) continue; mProgressColors[type] = new DyePalette(XML::getProperty(node, - "color", "")); + "color", ""), 6); } } } |