talons

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

commit acf535ca86d1a52902646c6248f7446e10899df2
parent 8cde3f4f6cf149dbe7cdabef513bbacf6c31f81c
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:
Msrc/folder_item_prefs.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/folder_item_prefs.c b/src/folder_item_prefs.c @@ -336,6 +336,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;