CAM: fix typo in Path/Main/Gui/Job.py

Fixes source comment typo
This commit is contained in:
luzpaz
2026-01-11 06:58:16 -05:00
committed by Max Wilfinger
parent f5f93d02f5
commit 8b12e395f9

View File

@@ -720,7 +720,7 @@ class StockFromExistingEdit(StockEdit):
# stockName has index suffix (since cloned), label has no index
# => ridgid string comparison fails
# Instead of ridgid string comparsion use partial (needle in haystack)
# Instead of ridgid string comparison use partial (needle in haystack)
# string comparison
# if label == stockName: # ridgid string comparison
if label in stockName: # partial string comparison