···4242 ShowFutureMenu a b c ->
4343 showFutureMenu a b c
44444545+ ShowFutureNavigationMenu a ->
4646+ showFutureNavigationMenu a
4747+4548 ShowHistoryMenu a b ->
4649 showHistoryMenu a b
4750···239242 , itemIndex = index
240243 }
241244 item
245245+ |> Just
246246+ |> (\c -> { model | contextMenu = c })
247247+ |> Return.singleton
248248+249249+250250+showFutureNavigationMenu : Mouse.Event -> Manager
251251+showFutureNavigationMenu mouseEvent model =
252252+ mouseEvent.clientPos
253253+ |> Coordinates.fromTuple
254254+ |> Queue.futureNavigationMenu { manualEntries = List.filter .manualEntry model.playingNext }
242255 |> Just
243256 |> (\c -> { model | contextMenu = c })
244257 |> Return.singleton