feat(tracker/gioui): add expander panel showing peaks

This commit is contained in:
5684185+vsariola@users.noreply.github.com
2025-04-27 14:08:21 +03:00
parent bb605ffa0b
commit e0392323c0
2 changed files with 61 additions and 16 deletions

View File

@ -357,17 +357,3 @@ func (l *DragList) CenterOn(item int) {
func between(a, b, c int) bool {
return (a <= b && b <= c) || (c <= b && b <= a)
}
func max(a, b int) int {
if a > b {
return a
}
return b
}
func min(a, b int) int {
if a < b {
return a
}
return b
}