mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
c32b9b07a8
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
24 lines
734 B
XML
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>
|