Allow description to be copied in properties dialog

This commit is contained in:
heliguy
2024-04-02 05:31:14 -04:00
parent 7543180a86
commit 7e03412bd1
2 changed files with 23 additions and 14 deletions

View File

@@ -39,29 +39,31 @@ template $PropertiesWindow: Adw.Dialog {
]
}
Button {
margin-top: 6;
Label name {
wrap: true;
styles [
"title-1",
"flat"
"title-1"
]
Label name {
wrap: true;
}
}
Button {
sensitive: true;
Button description_button {
styles [
"title-4",
"flat"
]
Label description {
wrap: true;
Box {
spacing: 12;
Label description {
halign: start;
wrap: true;
hexpand: true;
}
Image {
icon-name: "edit-copy-symbolic";
}
}
}