Skip to content

Commit

Permalink
mosaic: sort functions tab first
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Jul 24, 2024
1 parent 48d4d79 commit 393387e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/sst/mosaic/multiplexer/draw.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func (s *Multiplexer) sort() {
}
key := s.selectedProcess().key
sort.Slice(s.processes, func(i, j int) bool {
if s.processes[i].killable && !s.processes[i].killable {
if s.processes[i].killable && !s.processes[j].killable {
return false
}
if !s.processes[i].dead && s.processes[j].dead {
Expand Down

0 comments on commit 393387e

Please sign in to comment.