Skip to content

Commit

Permalink
Added path to stop the annoying 'can't find pcb-gcode' message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnson, John T committed Sep 2, 2022
1 parent 9e1022c commit b5b0eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcb-gcode-setup.ulp
Original file line number Diff line number Diff line change
Expand Up @@ -1073,12 +1073,12 @@ switch (Result) {
// Accept
case 1:
if (m_setup_was_changed)
m_cmd = "run pcb-gcode-setup;\n";
m_cmd = "run " + g_path + "/pcb-gcode-setup;\n";
break;
// Accept and make board
case 2:
// dlgMessageBox("g_path = \"" + g_path + "\"");
m_cmd = "run pcb-gcode;\n";
m_cmd = "run " + g_path + "/pcb-gcode;\n";
break;
}

Expand Down

0 comments on commit b5b0eec

Please sign in to comment.