addJobInTargetList.lua 302 B

1234567891011
  1. --[[
  2. Function to add job in target list and add marker if needed.
  3. ]]
  4. -- Includes
  5. --- @include "addBaseMarkerIfNeeded"
  6. local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId)
  7. rcall(pushCmd, targetKey, jobId)
  8. addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed)
  9. end