aboutsummaryrefslogtreecommitdiffstats
path: root/worker
diff options
context:
space:
mode:
authorKoni Marti <koni.marti@gmail.com>2022-11-02 22:26:49 +0100
committerRobin Jarry <robin@jarry.cc>2022-11-06 23:16:39 +0100
commitdf0e7f7f9e484e2a41162cdf0e0b8725007e3b72 (patch)
tree5d76e4a6ba6d2cc3f6fc936511ada328052d97ee /worker
parent33ceb56680ba92406137ace7eee8139824446308 (diff)
downloadaerc-df0e7f7f9e484e2a41162cdf0e0b8725007e3b72.tar.gz
threadbuilder: sort siblings by sort criteria
Sort the client-side thread siblings according to the sort criteria. Activate this option by setting "sort-thread-siblings" to true in the ui section of aerc.conf. "sort-thread-siblings" is false by default and the siblings will be sorted based on their uid number. Note that this options will only work with client-side threading and when the backend supports sorting. Also, it comes with a slight performance penalty. Signed-off-by: Koni Marti <koni.marti@gmail.com> Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'worker')
-rw-r--r--worker/types/thread.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/worker/types/thread.go b/worker/types/thread.go
index 177cd310..4bcd843a 100644
--- a/worker/types/thread.go
+++ b/worker/types/thread.go
@@ -20,14 +20,14 @@ type Thread struct {
}
func (t *Thread) AddChild(child *Thread) {
- t.insertCmp(child, func(child, iter *Thread) bool { return true })
+ t.InsertCmp(child, func(child, iter *Thread) bool { return true })
}
func (t *Thread) OrderedInsert(child *Thread) {
- t.insertCmp(child, func(child, iter *Thread) bool { return child.Uid > iter.Uid })
+ t.InsertCmp(child, func(child, iter *Thread) bool { return child.Uid > iter.Uid })
}
-func (t *Thread) insertCmp(child *Thread, cmp func(*Thread, *Thread) bool) {
+func (t *Thread) InsertCmp(child *Thread, cmp func(*Thread, *Thread) bool) {
if t.FirstChild == nil {
t.FirstChild = child
} else {