1
0
mirror of https://github.com/aseprite/aseprite.git synced 2025-04-04 01:21:10 +00:00

Minor change in sprite_properties.xml (change box -> hbox/vbox/boxfiller)

This commit is contained in:
David Capello 2014-05-02 20:09:18 -03:00
parent 02a8ea779a
commit a445ec4b07

@ -2,33 +2,29 @@
<!-- Copyright (C) 2001-2013 by David Capello --> <!-- Copyright (C) 2001-2013 by David Capello -->
<gui> <gui>
<window text="Sprite Properties" id="sprite_properties"> <window text="Sprite Properties" id="sprite_properties">
<box vertical="true"> <vbox>
<box horizontal="true"> <grid columns="2">
<grid columns="2" expansive="true"> <label text="File name:" />
<entry text="" id="name" maxsize="256" minwidth="64" readonly="true" cell_align="horizontal" />
<label text="File name:" /> <label text="Type:" />
<entry text="" id="name" maxsize="256" minwidth="64" readonly="true" cell_align="horizontal" /> <label text="" id="type" />
<label text="Type:" /> <label text="Size:" />
<label text="" id="type" /> <label text="" id="size" />
<label text="Size:" /> <label text="Frames:" />
<label text="" id="size" /> <label text="" id="frames" />
<label text="Frames:" /> <label text="Transparent Color:" />
<label text="" id="frames" /> <hbox id="box_transparent" tooltip="Palette entry used as&#10;transparent color in each&#10;layer (only for indexed images)." />
</grid>
<label text="Transparent Color:" />
<box horizontal="true" id="box_transparent"
tooltip="Palette entry used as&#10;transparent color in each&#10;layer (only for indexed images)." />
</grid>
</box>
<separator horizontal="true" /> <separator horizontal="true" />
<box horizontal="true"> <hbox>
<box horizontal="true" expansive="true" /> <boxfiller />
<button text="&amp;OK" closewindow="true" id="ok" magnet="true" width="60" /> <button text="&amp;OK" closewindow="true" id="ok" magnet="true" width="60" />
<button text="&amp;Cancel" closewindow="true" id="cancel" width="60" /> <button text="&amp;Cancel" closewindow="true" id="cancel" width="60" />
</box> </hbox>
</box> </vbox>
</window> </window>
</gui> </gui>