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

View File

@ -2,10 +2,8 @@
<!-- 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:" /> <label text="File name:" />
<entry text="" id="name" maxsize="256" minwidth="64" readonly="true" cell_align="horizontal" /> <entry text="" id="name" maxsize="256" minwidth="64" readonly="true" cell_align="horizontal" />
@ -19,16 +17,14 @@
<label text="" id="frames" /> <label text="" id="frames" />
<label text="Transparent Color:" /> <label text="Transparent Color:" />
<box horizontal="true" id="box_transparent" <hbox id="box_transparent" tooltip="Palette entry used as&#10;transparent color in each&#10;layer (only for indexed images)." />
tooltip="Palette entry used as&#10;transparent color in each&#10;layer (only for indexed images)." />
</grid> </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>