[Commits] [SCM] claws branch, gtk3, updated. 4.0.0-171-g36d10734f
paul at claws-mail.org
paul at claws-mail.org
Mon Sep 13 20:02:24 CEST 2021
The branch, gtk3 has been updated
via 36d10734f286e20c1844184552b21f6a35df3b3f (commit)
from fab030f00f795fee165ecc8b08e975ca68efc303 (commit)
Summary of changes:
src/gtk/gtkaspell.c | 4 ++--
src/summaryview.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
- Log -----------------------------------------------------------------
commit 36d10734f286e20c1844184552b21f6a35df3b3f
Author: paul <paul at claws-mail.org>
Date: Mon Sep 13 19:02:20 2021 +0100
use separators in menus, not empty menu items
diff --git a/src/gtk/gtkaspell.c b/src/gtk/gtkaspell.c
index 40a30abde..cf94cde57 100644
--- a/src/gtk/gtkaspell.c
+++ b/src/gtk/gtkaspell.c
@@ -2012,7 +2012,7 @@ static GSList *populate_submenu(GtkAspell *gtkaspell)
gtk_widget_show(item);
list = g_slist_append(list, item);
- item = gtk_menu_item_new();
+ item = gtk_separator_menu_item_new();
gtk_widget_show(item);
list = g_slist_append(list, item);
@@ -2040,7 +2040,7 @@ static GSList *populate_submenu(GtkAspell *gtkaspell)
gtk_widget_show(both_dicts_item);
list = g_slist_append(list, both_dicts_item);
- item = gtk_menu_item_new();
+ item = gtk_separator_menu_item_new();
gtk_widget_show(item);
list = g_slist_append(list, item);
diff --git a/src/summaryview.c b/src/summaryview.c
index d69761b2c..6fa8679ef 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -6460,7 +6460,7 @@ static void summary_tags_menu_create(SummaryView *summaryview, gboolean refresh)
}
if (existing_tags) {
/* separator */
- item = gtk_menu_item_new();
+ item = gtk_separator_menu_item_new();
gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
gtk_widget_show(item);
}
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list