talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 52ec6e9603a5e140dce7955129319b1000e5cd7e
parent e9f6f7f557f12e529677349d5751f68bbda5097e
Author: wwp <subscript@free.fr>
Date:   Thu, 10 Apr 2025 21:54:37 +0200

Add a bit of space around Subject: and entry field in the write window.

Diffstat:
Msrc/compose.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/compose.c b/src/compose.c @@ -8100,7 +8100,7 @@ static Compose *compose_create(PrefsAccount *account, gtk_widget_show(subject); label = gtk_label_new_with_mnemonic(_("S_ubject:")); - gtk_box_pack_start(GTK_BOX(subject), label, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(subject), label, FALSE, FALSE, HSPACING_NARROW); gtk_widget_show(label); #ifdef USE_ENCHANT @@ -8108,7 +8108,7 @@ static Compose *compose_create(PrefsAccount *account, #else subject_entry = gtk_entry_new(); #endif - gtk_box_pack_start(GTK_BOX(subject), subject_entry, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(subject), subject_entry, TRUE, TRUE, HSPACING_NARROW); g_signal_connect_after(G_OBJECT(subject_entry), "grab_focus", G_CALLBACK(compose_grab_focus_cb), compose); gtk_label_set_mnemonic_widget(GTK_LABEL(label), subject_entry); @@ -8418,7 +8418,7 @@ static GtkWidget *compose_account_option_menu_create(Compose *compose) optmenu = gtkut_sc_combobox_create(optmenubox, FALSE); menu = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(optmenu))); - hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 4); + hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, HSPACING_NARROW); from_name = gtk_entry_new(); g_signal_connect_after(G_OBJECT(from_name), "grab_focus",