fix: improve negative prompt popover

This commit is contained in:
0xMRTT 2023-05-18 19:40:45 +02:00
parent 792db18cfe
commit 390c34a498
Signed by: 0xMRTT
GPG Key ID: 19C1449A774028BD
1 changed files with 11 additions and 3 deletions

View File

@ -73,13 +73,21 @@ template $ImaginerWindow : Adw.ApplicationWindow {
valign: center;
tooltip-text: _("About Negative Prompt");
styles [ "flat" ]
popover: Popover {
Label {
autohide: true;
Label negative-label {
margin-top: 6;
margin-bottom: 6;
margin-start: 6;
margin-end: 6;
max-width-chars: 30;
wrap: true;
justify: center;
label: _("Negative Prompt is a way to specify what you don't want to see in the image, without any extra input");
}
};
}
}
}
}