fix: improve negative prompt popover
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

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

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");
}
};
}
}
}
}