commit be299d7b85ea583d472c1422e787640af286399e
parent 2becb58d21d908430a4a72abe7c31f81bb91dc3e
Author: wwp <subscript@free.fr>
Date: Sun, 13 Apr 2025 18:53:28 +0200
Use proper spacing macros.
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/prefs_filtering_action.c b/src/prefs_filtering_action.c
@@ -1,6 +1,6 @@
/*
* Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 2003-2024 the Claws Mail team
+ * Copyright (C) 2003-2025 the Claws Mail team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -420,7 +420,7 @@ static void prefs_filtering_action_create(void)
table = gtk_grid_new();
gtk_container_set_border_width(GTK_CONTAINER(table), VSPACING_NARROW);
gtk_grid_set_row_spacing(GTK_GRID(table), VSPACING_NARROW_2);
- gtk_grid_set_column_spacing(GTK_GRID(table), VSPACING_NARROW);
+ gtk_grid_set_column_spacing(GTK_GRID(table), HSPACING_NARROW);
gtk_container_add(GTK_CONTAINER(frame), table);
/* first row labels */
diff --git a/src/prefs_matcher.c b/src/prefs_matcher.c
@@ -1,6 +1,6 @@
/*
* Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2024 the Claws Mail team and Hiroyuki Yamamoto
+ * Copyright (C) 1999-2025 the Claws Mail team and Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -599,7 +599,7 @@ static void prefs_matcher_create(void)
table = gtk_grid_new();
gtk_container_set_border_width(GTK_CONTAINER(table), VSPACING_NARROW);
gtk_grid_set_row_spacing(GTK_GRID(table), VSPACING_NARROW_2);
- gtk_grid_set_column_spacing(GTK_GRID(table), VSPACING_NARROW);
+ gtk_grid_set_column_spacing(GTK_GRID(table), HSPACING_NARROW);
gtk_container_add(GTK_CONTAINER(frame), table);
upper_hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, HSPACING_NARROW);