summaryrefslogtreecommitdiff
path: root/lib/msgstore.go
diff options
context:
space:
mode:
authorKoni Marti <koni.marti@gmail.com>2022-03-24 23:12:14 +0100
committerRobin Jarry <robin@jarry.cc>2022-03-25 13:07:20 +0100
commite50ab5928475ef44e880e3391e5ca164c8077ce4 (patch)
treebb1854fff779df27545789793068fbf38959cdad /lib/msgstore.go
parentaf2a70983c8d9a940a064c17057d42d92d717883 (diff)
downloadaerc-e50ab5928475ef44e880e3391e5ca164c8077ce4.zip
sort: keep sort criteria applied to folder
Keep the sort criteria applied to the selected folder until the default sort order should be restored. Call the sort command without arguments to restore the default sort order. The current behavior is that the default sort order is restored as soon as the folder reloads. This happens often and then the results of the sort command are lost. This makes the sort command not very user-friendly. Instead, we should keep the sort criteria applied until the user explicitly wants to restore the default sort order again. Signed-off-by: Koni Marti <koni.marti@gmail.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'lib/msgstore.go')
-rw-r--r--lib/msgstore.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/msgstore.go b/lib/msgstore.go
index 0ded01f..542f93d 100644
--- a/lib/msgstore.go
+++ b/lib/msgstore.go
@@ -35,7 +35,7 @@ type MessageStore struct {
filtered []uint32
filter bool
- defaultSortCriteria []*types.SortCriterion
+ sortCriteria []*types.SortCriterion
thread bool
buildThreads bool
@@ -77,7 +77,7 @@ func NewMessageStore(worker *types.Worker,
thread: thread,
- defaultSortCriteria: defaultSortCriteria,
+ sortCriteria: defaultSortCriteria,
pendingBodies: make(map[uint32]interface{}),
pendingHeaders: make(map[uint32]interface{}),
@@ -184,7 +184,7 @@ func (store *MessageStore) Update(msg types.WorkerMessage) {
switch msg := msg.(type) {
case *types.DirectoryInfo:
store.DirInfo = *msg.Info
- store.Sort(store.defaultSortCriteria, nil)
+ store.Sort(store.sortCriteria, nil)
update = true
case *types.DirectoryContents:
newMap := make(map[uint32]*models.MessageInfo)
@@ -721,6 +721,7 @@ func (store *MessageStore) ModifyLabels(uids []uint32, add, remove []string,
func (store *MessageStore) Sort(criteria []*types.SortCriterion, cb func()) {
store.Sorting = true
+ store.sortCriteria = criteria
handle_return := func(msg types.WorkerMessage) {
store.Sorting = false