Remove old layer icons from skin sprite sheet

This commit is contained in:
David Capello 2015-01-18 22:45:58 -03:00
parent 0cff720ef3
commit 15c6ee9046
5 changed files with 0 additions and 26 deletions

View File

@ -43,7 +43,6 @@
# Refactoring
* Remove unused skin parts
* Make one level of layers (folders should modify only timeline/UI)
* Convert doc::PixelFormat to a enum class
* Add doc::Spec with width/height/channels/ColorMode/ncolors

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -265,14 +265,6 @@
<part id="rotate_arrow_1" x="96" y="240" w="11" h="11" />
<part id="rotate_arrow_2" x="112" y="240" w="15" h="10" />
<part id="rotate_arrow_3" x="128" y="240" w="10" h="15" />
<part id="layer_visible" x="144" y="160" w="8" h="8" />
<part id="layer_visible_selected" x="144" y="168" w="8" h="8" />
<part id="layer_hidden" x="160" y="160" w="8" h="8" />
<part id="layer_hidden_selected" x="160" y="168" w="8" h="8" />
<part id="layer_editable" x="144" y="176" w="8" h="8" />
<part id="layer_editable_selected" x="144" y="184" w="8" h="8" />
<part id="layer_locked" x="160" y="176" w="8" h="8" />
<part id="layer_locked_selected" x="160" y="184" w="8" h="8" />
<part id="selection_replace" x="176" y="160" w="7" h="8" />
<part id="selection_replace_selected" x="176" y="168" w="7" h="8" />
<part id="selection_add" x="192" y="160" w="7" h="8" />

View File

@ -167,15 +167,6 @@ namespace app {
PART_ROTATE_ARROW_2,
PART_ROTATE_ARROW_3,
PART_LAYER_VISIBLE,
PART_LAYER_VISIBLE_SELECTED,
PART_LAYER_HIDDEN,
PART_LAYER_HIDDEN_SELECTED,
PART_LAYER_EDITABLE,
PART_LAYER_EDITABLE_SELECTED,
PART_LAYER_LOCKED,
PART_LAYER_LOCKED_SELECTED,
PART_SELECTION_REPLACE,
PART_SELECTION_REPLACE_SELECTED,
PART_SELECTION_ADD,

View File

@ -269,14 +269,6 @@ SkinTheme::SkinTheme()
sheet_mapping["rotate_arrow_1"] = PART_ROTATE_ARROW_1;
sheet_mapping["rotate_arrow_2"] = PART_ROTATE_ARROW_2;
sheet_mapping["rotate_arrow_3"] = PART_ROTATE_ARROW_3;
sheet_mapping["layer_visible"] = PART_LAYER_VISIBLE;
sheet_mapping["layer_visible_selected"] = PART_LAYER_VISIBLE_SELECTED;
sheet_mapping["layer_hidden"] = PART_LAYER_HIDDEN;
sheet_mapping["layer_hidden_selected"] = PART_LAYER_HIDDEN_SELECTED;
sheet_mapping["layer_editable"] = PART_LAYER_EDITABLE;
sheet_mapping["layer_editable_selected"] = PART_LAYER_EDITABLE_SELECTED;
sheet_mapping["layer_locked"] = PART_LAYER_LOCKED;
sheet_mapping["layer_locked_selected"] = PART_LAYER_LOCKED_SELECTED;
sheet_mapping["selection_replace"] = PART_SELECTION_REPLACE;
sheet_mapping["selection_replace_selected"] = PART_SELECTION_REPLACE_SELECTED;
sheet_mapping["selection_add"] = PART_SELECTION_ADD;