mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-02 19:44:00 +00:00
4edc5f4b50
* move flatpak manifests to build-aux/flatpak directory * update workflows to new manifests locations * update README
14 lines
279 B
Text
14 lines
279 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template GradienceBuiltinPresetRow : Adw.ActionRow {
|
|
[suffix]
|
|
Button apply_button {
|
|
valign: center;
|
|
icon-name: "checkmark-small-symbolic";
|
|
tooltip-text: _("Apply preset");
|
|
clicked => on_apply_button_clicked();
|
|
}
|
|
|
|
|
|
}
|