don't crash when no presets are passed
This commit is contained in:
parent
6d045ff304
commit
1e87393d07
|
@ -150,7 +150,9 @@ func milkbucket(cmd *cobra.Command, args []string) {
|
|||
}
|
||||
defer m.destroy()
|
||||
|
||||
m.loadPreset(false)
|
||||
if len(args) > 0 {
|
||||
m.loadPreset(false)
|
||||
}
|
||||
|
||||
running := true
|
||||
for running {
|
||||
|
|
|
@ -67,8 +67,10 @@ func (m *milkDropWindow) setupPresets(presets []string) {
|
|||
* preset.
|
||||
*/
|
||||
func (m *milkDropWindow) nextPreset(smooth bool) {
|
||||
m.preset = m.preset.Next()
|
||||
m.loadPreset(smooth)
|
||||
if m.preset.Len() > 0 {
|
||||
m.preset = m.preset.Next()
|
||||
m.loadPreset(smooth)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -76,8 +78,10 @@ func (m *milkDropWindow) nextPreset(smooth bool) {
|
|||
* preset.
|
||||
*/
|
||||
func (m *milkDropWindow) prevPreset(smooth bool) {
|
||||
m.preset = m.preset.Prev()
|
||||
m.loadPreset(smooth)
|
||||
if m.preset.Len() > 0 {
|
||||
m.preset = m.preset.Prev()
|
||||
m.loadPreset(smooth)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue