mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-16 13:14:44 +00:00
19e8083256
+ Renamed Editor::cursor_eyedropper to Editor::alt_pressed. + Added statusbar_show_tip. + Added AppHooks. + Renamed color_button_* to colorbutton_* + Renamed GfxObj*Layer::parent to Layer*Layer::parent_layer. + Added Palette gfxobj and refactored a lot of code to this new Palette instead of Allegro's RGB/PALETTE. + Now jfile.c uses jxml.c. + New signature for callbacks in 'hook_signal' of modules/gui.c: bool hook(JWidget, void *); - Removed colsel and minipal from dialogs. + Fixed mouse bounds in sliders.
25 lines
770 B
Plaintext
25 lines
770 B
Plaintext
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2008 by David A. Capello -->
|
|
<!-- Read "LEGAL.txt" for more information. -->
|
|
<jinete>
|
|
<window text="Duplicate Sprite" name="duplicate_sprite">
|
|
<box vertical>
|
|
<box horizontal expansive>
|
|
<box vertical homogeneous>
|
|
<label text="Duplicate:" />
|
|
<label text="As:" />
|
|
</box>
|
|
<box vertical homogeneous expansive>
|
|
<label text="" name="src_name" />
|
|
<entry maxsize="256" name="dst_name" magnetic />
|
|
</box>
|
|
</box>
|
|
<check text="Duplicate merged layers only" name="flatten" />
|
|
<box horizontal homogeneous>
|
|
<button text="&OK" name="ok" magnetic />
|
|
<button text="&Cancel" />
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</jinete>
|