mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-28 15:20:15 +00:00
df0104734f
Fixed some bugs in the GUI system. Added tabs, and removed the list-menu.
28 lines
850 B
Plaintext
28 lines
850 B
Plaintext
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2005, 2007 by David A. Capello -->
|
|
|
|
<!-- Read "LEGAL.txt" for more information. -->
|
|
|
|
<window text="Configure Screen" name="configure_screen" width="200">
|
|
<box vertical>
|
|
<box horizontal expansive>
|
|
<box vertical homogeneous>
|
|
<label text="Resolution:" />
|
|
<label text="Color depth:" />
|
|
<label text="Pixel scale:" />
|
|
<check text="Fullscreen" name="fullscreen" />
|
|
</box>
|
|
<box vertical homogeneous expansive>
|
|
<combobox name="resolution" />
|
|
<combobox name="color_depth" />
|
|
<combobox name="pixel_scale" />
|
|
<label text="" />
|
|
</box>
|
|
</box>
|
|
<box horizontal homogeneous>
|
|
<button text="&OK" name="ok" magnetic />
|
|
<button text="&Cancel" />
|
|
</box>
|
|
</box>
|
|
</window>
|