mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-07 04:51:42 +00:00
14 lines
251 B
Text
14 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();
|
||
|
}
|
||
|
|
||
|
}
|