+2002-06-16 [alfons] 0.7.8claws3
+
+ * src/folder.c
+ make sure lock sort mode (claws specific) is
+ also persists after a tree rescan
+
2002-06-16 [alfons] 0.7.8claws2
* src/prefs_folder_item.c
sort_key = SORT_BY_UNREAD;
else if (!strcmp(attr->value, "mime"))
sort_key = SORT_BY_MIME;
+ else if (!strcmp(attr->value, "locked"))
+ sort_key = SORT_BY_LOCKED;
} else if (!strcmp(attr->name, "sort_type")) {
if (!strcmp(attr->value, "ascending"))
sort_type = SORT_ASCENDING;
"draft", "queue", "trash"};
static gchar *sort_key_str[] = {"none", "number", "size", "date",
"from", "subject", "score", "label",
- "mark", "unread", "mime"};
+ "mark", "unread", "mime", "locked" };
g_return_if_fail(item != NULL);