mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-03 11:53:58 +00:00
17 lines
340 B
Text
17 lines
340 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-large-symbolic";
|
|
tooltip-text: _("Apply Preset");
|
|
clicked => on_apply_button_clicked();
|
|
styles [
|
|
"flat",
|
|
]
|
|
}
|
|
}
|