Gradience/data/ui/repo_row.blp

13 lines
254 B
Text
Raw Normal View History

2022-09-03 11:02:36 +00:00
using Gtk 4.0;
using Adw 1;
template GradienceRepoRow : Adw.ActionRow {
[suffix]
Button remove_button {
valign: center;
2022-09-25 12:17:04 +00:00
icon-name: "user-trash-symbolic";
tooltip-text: _("Remove Preset");
2022-09-03 11:02:36 +00:00
clicked => on_remove_button_clicked();
}
}