Skip to content

Commit

Permalink
Merge pull request #893 from Ultimaker/remove_blocking_parameter
Browse files Browse the repository at this point in the history
Remove blocking parameter
  • Loading branch information
LipuFei authored Dec 5, 2018
2 parents a5a5239 + 1bd4716 commit b13ed77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/communication/ArcusCommunication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ void ArcusCommunication::setExtruderForSend(const ExtruderTrain& extruder)

void ArcusCommunication::sliceNext()
{
const Arcus::MessagePtr message = private_data->socket->takeNextMessage(true);
const Arcus::MessagePtr message = private_data->socket->takeNextMessage();

//Handle the main Slice message.
const cura::proto::Slice* slice_message = dynamic_cast<cura::proto::Slice*>(message.get()); //See if the message is of the message type Slice. Returns nullptr otherwise.
Expand Down

0 comments on commit b13ed77

Please sign in to comment.