snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit c30036f8c3d145a9fa16db42029675e22f09e687
parent 06376f79c8d685df903a6620ee2e9abd70e925a1
Author: default <nobody@localhost>
Date:   Sat, 19 Oct 2024 09:08:10 +0200

Fixed Draft: label title.

Diffstat:
Mhtml.c | 13+++++++------
1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/html.c b/html.c @@ -361,12 +361,13 @@ xs_html *html_note(snac *user, const char *summary, xs_html_add(form, xs_html_tag("p", NULL), - xs_html_attr("title", L("Don't send, but store as a draft")), - xs_html_text(L("Draft:")), - xs_html_sctag("input", - xs_html_attr("type", "checkbox"), - xs_html_attr("name", "is_draft"), - xs_html_attr(is_draft ? "checked" : "", NULL))); + xs_html_tag("span", + xs_html_attr("title", L("Don't send, but store as a draft")), + xs_html_text(L("Draft:")), + xs_html_sctag("input", + xs_html_attr("type", "checkbox"), + xs_html_attr("name", "is_draft"), + xs_html_attr(is_draft ? "checked" : "", NULL)))); if (edit_id) xs_html_add(form,