mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-03 11:53:58 +00:00
12 lines
254 B
Text
12 lines
254 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template GradienceRepoRow : Adw.ActionRow {
|
|
[suffix]
|
|
Button remove_button {
|
|
valign: center;
|
|
icon-name: "user-trash-symbolic";
|
|
tooltip-text: _("Remove Preset");
|
|
clicked => on_remove_button_clicked();
|
|
}
|
|
}
|