Skip to content

Commit

Permalink
use correct index for assign part event
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouni committed Feb 23, 2024
1 parent dcb8608 commit 20d6fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion partselector.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ def select_part(self, *_):
if row == -1:
return
selection = self.part_list.GetTextValue(row, 0)
stock = self.part_list.GetTextValue(row, 8)
stock = self.part_list.GetTextValue(row, 5)
wx.PostEvent(
self.parent,
AssignPartsEvent(
Expand Down

0 comments on commit 20d6fd2

Please sign in to comment.