mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-01 00:23:35 +00:00
02e8c66da4
Several refactoring tasks where made: - Removed the old Widget::id field (JID). - Renamed Widget::get/setName to get/setId. - Moved load_widget_from_xmlfile() to app::load_widget and WidgetLoader class. - Removed jhook structure & jwidget_add_hook function. Hooks were replaced subclassing widgets. - Added InitThemeEvent class and Widget::onInitTheme member function.
23 lines
721 B
XML
23 lines
721 B
XML
<!-- ASEPRITE -->
|
|
<!-- Copyright (C) 2001-2012 by David Capello -->
|
|
<gui>
|
|
<window text="Frame Duration" id="frame_duration">
|
|
<grid columns="3">
|
|
<label text="Frame number:" />
|
|
<label text="" id="frame" />
|
|
<box cell_align="horizontal" />
|
|
|
|
<label text="Duration (milliseconds):" />
|
|
<entry maxsize="10" id="frlen" magnet="true" />
|
|
<box cell_align="horizontal" />
|
|
|
|
<separator horizontal="true" cell_hspan="3" />
|
|
|
|
<box horizontal="true" homogeneous="true" cell_hspan="3" cell_align="right">
|
|
<button text="&OK" closewindow="true" id="ok" magnet="true" minwidth="60" />
|
|
<button text="&Cancel" closewindow="true" />
|
|
</box>
|
|
</grid>
|
|
</window>
|
|
</gui>
|