commit f4d95c94ab32be8b253593df5fddf9fc274e9275
parent 8aef4c2d8b20c7611583e4900c26f32bba79c1bd
Author: Paul <paul@claws-mail.org>
Date: Sun, 18 Nov 2018 17:23:35 +0000
fix bug where creating a new folder wth inheriting properties doesn't write processinf rules
after copying folder with 'inherit properties from parent folder' set,
the processing rules are (initially) present in the processing rules
dialogue, but are not actually written. So on a restart they are 'lost'.
This is probably the actual bug 4121, ' Moving a subfolder in another
folder erases its processing rules', rather than the description given.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/folder_item_prefs.c b/src/folder_item_prefs.c
@@ -335,6 +335,7 @@ void folder_item_prefs_copy_prefs(FolderItem * src, FolderItem * dest)
*dest->prefs = tmp_prefs;
folder_item_prefs_save_config(dest);
+ prefs_matcher_write_config();
dest->collapsed = src->collapsed;
dest->thread_collapsed = src->thread_collapsed;