[Commits] [SCM] claws branch, gtk3, updated. 4.0.0-47-g22f7e8c19

jonathan at claws-mail.org jonathan at claws-mail.org
Wed Aug 18 18:34:05 UTC 2021


The branch, gtk3 has been updated
       via  22f7e8c1911cbdb0debb7e869ef859b5c09e8961 (commit)
       via  23218372fb31b93cc3bef4474e928fe25df387e2 (commit)
      from  332a9b8958a333c368e432651339c9fb7deddb20 (commit)

Summary of changes:
 src/messageview.c                      | 6 ++++--
 src/plugins/litehtml_viewer/lh_prefs.c | 1 +
 2 files changed, 5 insertions(+), 2 deletions(-)


- Log -----------------------------------------------------------------
commit 22f7e8c1911cbdb0debb7e869ef859b5c09e8961
Author: Jonathan Boeing <jonathan at claws-mail.org>
Date:   Wed Aug 18 09:48:37 2021 -0700

    Fix return receipts from accounts without a name
    
    Use the chosen account's address for the return receipt if the account
    name isn't set

diff --git a/src/messageview.c b/src/messageview.c
index 6b187d619..094ec0498 100644
--- a/src/messageview.c
+++ b/src/messageview.c
@@ -962,8 +962,10 @@ static gint disposition_notification_send(MsgInfo *msginfo)
 		}
 		g_free(buf);
 		buf = NULL;
-	} else
-		goto FILE_ERROR;
+	} else {
+		if (fprintf(fp, "From: %s\n", account->address) < 0)
+			goto FILE_ERROR;
+	}
 
 	if (fprintf(fp, "To: %s\n", to) < 0)
 		goto FILE_ERROR;

commit 23218372fb31b93cc3bef4474e928fe25df387e2
Author: Jonathan Boeing <jonathan at claws-mail.org>
Date:   Tue Aug 17 12:22:57 2021 -0700

    Make litehtml image cache size preference visible

diff --git a/src/plugins/litehtml_viewer/lh_prefs.c b/src/plugins/litehtml_viewer/lh_prefs.c
index 2932b9b44..f6ccc9d4d 100644
--- a/src/plugins/litehtml_viewer/lh_prefs.c
+++ b/src/plugins/litehtml_viewer/lh_prefs.c
@@ -141,6 +141,7 @@ static void create_lh_prefs_page(PrefsPage *page, GtkWindow *window,
 	gtk_spin_button_set_value(GTK_SPIN_BUTTON(image_cache_size),
 			lh_prefs.image_cache_size);
 	gtk_box_pack_start(GTK_BOX(hbox), image_cache_size, FALSE, FALSE, 0);
+	gtk_widget_show_all(hbox);
 
 	/* Font */
 	hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 8);

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list