aseprite/data/widgets/incompat_file.xml
David Capello c32b9b07a8 Centralize the warning message for incompatible files/forward compatibility (#3811, #3812)
Several changes were included:
- Fixes in TextBox widget to show it with proper size hint when it's
  outside a viewport
- Added the IncompatFileWindow with a message + link to know how to
  update Aseprite and solve the situation
- Moved CannotModifyWhenReadOnlyException from app/doc.h to
  app/transaction.h
2023-05-11 12:18:31 -03:00

24 lines
734 B
XML

<!-- Aseprite -->
<!-- Copyright (c) 2023 Igara Studio S.A. -->
<gui>
<window id="incompat_file" text="@.title">
<vbox>
<textbox text="@.message" wordwrap="true" style="textbox_label" />
<vbox id="errors_placeholder" expansive="true">
<label text="@.incompatibilities" />
<view id="errors_view" expansive="true">
<textbox id="errors" text="" />
</view>
</vbox>
<hbox>
<boxfiller />
<vbox>
<link text="@.update_link" url="https://www.aseprite.org/faq/#update" />
<button text="@general.close" closewindow="true" id="ok" magnet="true" minwidth="60" />
</vbox>
<boxfiller />
</hbox>
</vbox>
</window>
</gui>