mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-29 09:23:32 +00:00
7d47093acc
+ Add ButtonBase::Click signal. + Button does not close the window by default (you have to configure this action manually when Click signal is triggered). + Add "closewindow" attribute to <button> widget in XML files. + Move "bevels" to SkinProperty. + Convert colorbutton widget in ColorButton C++ class.
14 lines
525 B
XML
14 lines
525 B
XML
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2010 by David Capello -->
|
|
<jinete>
|
|
<window text="Warning - Important" name="advanced_mode_warning">
|
|
<grid columns="1">
|
|
<label text="You are going to enter in "Advanced Mode"." />
|
|
<label text="" name="warning_label" />
|
|
<check text="Don't show this again" name="donot_show" />
|
|
<separator horizontal="true" />
|
|
<button text="&OK" closewindow="true" magnetic="true" minwidth="60" cell_align="center" />
|
|
</grid>
|
|
</window>
|
|
</jinete>
|