mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-01 19:34:00 +00:00
13 lines
316 B
Text
13 lines
316 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template GradienceBuiltinPresetRow : Adw.ActionRow {
|
|
subtitle: _("Made by @GradienceTeam");
|
|
[suffix]
|
|
Button apply_button {
|
|
valign: center;
|
|
icon-name: "checkmark-small-symbolic";
|
|
tooltip-text: _("Apply preset");
|
|
clicked => on_apply_button_clicked();
|
|
}
|
|
}
|