Skip to content

Commit

Permalink
Core update
Browse files Browse the repository at this point in the history
  • Loading branch information
garciadelcastillo committed Dec 20, 2018
1 parent 2b7891f commit 7e412de
Show file tree
Hide file tree
Showing 4 changed files with 132 additions and 23 deletions.
Binary file modified dist/nightly/Machina.dll
Binary file not shown.
153 changes: 131 additions & 22 deletions dist/nightly/Machina.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified dist/nightly/MachinaBridge.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion src/MachinaBridge/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ internal void UpdateRobotStatus()
Machina.MotionType mtype = bot.GetCurrentMotionMode();
lbl_Status_MotionMode_Value.Content = mtype.ToString();

lbl_Status_Tool_Value.Content = bot.GetCurrentTool().name;
lbl_Status_Tool_Value.Content = bot.GetCurrentTool()?.name ?? "(no tool)";

}, null);
}
Expand Down

0 comments on commit 7e412de

Please sign in to comment.