1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
/* -*- Mode: Blueprint; indent-tabs-mode: nil; tab-width: 2 -*-
*
* SPDX-License-Identifier: CC-BY-SA-4.0
* SPDX-FileCopyrightText: Michael Terry
*/
using Gtk 4.0;
using Adw 1;
template $ConfigFolderGroup: Adw.PreferencesGroup {
notify::key => $on_key_changed();
notify::check-access => $on_check_access_changed();
Adw.ButtonRow add_row {
start-icon-name: "list-add-symbolic";
title: bind template.add-label no-sync-create;
use-underline: true;
activated => $on_add_clicked();
}
}
|