Skip to content

Commit

Permalink
Update processingservice.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWindisch committed Feb 16, 2024
1 parent 5752f8a commit 0c4cac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions photobooth/services/processingservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ def start_job_1pic(self, _):
self.start_job(JobModel.Typ.image, 1)

def start_job_collage(self, config_id):
self.start_job(JobModel.Typ.collage, self._mediaprocessing_service.number_of_captures_to_take_for_collage(config_id), config_id)
self.start_job(JobModel.Typ.collage, self._mediaprocessing_service.number_of_captures_to_take_for_collage, config_id)

def start_job_animation(self, config_id):
self.start_job(JobModel.Typ.animation, self._mediaprocessing_service.number_of_captures_to_take_for_animation(config_id), config_id)
self.start_job(JobModel.Typ.animation, self._mediaprocessing_service.number_of_captures_to_take_for_animation, config_id)

def start_or_stop_job_video(self, _):
if self._state_machine is not None:
Expand Down

0 comments on commit 0c4cac1

Please sign in to comment.