Skip to content

Commit

Permalink
Fix missing error message when slicing with disabled extruder
Browse files Browse the repository at this point in the history
Following the removal of the get/setMessage methods in the Job class, the StartSliceJob has not been updated and still used them. We now use a specific variable for storing the disabled extruders and properly display them.

CURA-11904
  • Loading branch information
wawanbreton committed May 14, 2024
1 parent a8309eb commit 9839e4e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion UM/Job.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def __init__(self) -> None:
self._running = False # type: bool
self._finished = False # type: bool
self._result = None # type: Any
self._message = None # type: Any
self._error = None # type: Optional[Exception]

def run(self) -> None:
Expand Down

0 comments on commit 9839e4e

Please sign in to comment.