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