mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-05 21:57:20 +00:00
cf514f0c53
This new font selector list installed fonts with its proper name. It still needs some extra work to select font set styles (regular, bold, italic, etc.)
27 lines
819 B
XML
27 lines
819 B
XML
<!-- Aseprite -->
|
|
<!-- Copyright (C) 2024 by Igara Studio S.A. -->
|
|
<!-- Copyright (C) 2015-2018 by David Capello -->
|
|
<gui>
|
|
<window id="paste_text" text="@.title">
|
|
<grid columns="2">
|
|
<label text="@.text" />
|
|
<entry expansive="true" maxsize="256" minwidth="256" id="user_text" magnet="true" cell_align="horizontal" />
|
|
|
|
<label text="@.font" />
|
|
<font id="font_face" cell_align="horizontal" />
|
|
|
|
<label text="@.color" />
|
|
<hbox>
|
|
<colorpicker id="font_color" />
|
|
</hbox>
|
|
|
|
<separator horizontal="true" cell_hspan="2" />
|
|
|
|
<box horizontal="true" homogeneous="true" cell_hspan="2" cell_align="right">
|
|
<button text="@general.ok" closewindow="true" id="ok" magnet="true" minwidth="60" />
|
|
<button text="@general.cancel" closewindow="true" />
|
|
</box>
|
|
</grid>
|
|
</window>
|
|
</gui>
|