Skip to content

Commit 1f82465

Browse files
committed
Return None for price column on ship modes, fixes #322
1 parent d885bd4 commit 1f82465

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gui/builtinViewColumns/price.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self, fittingView, params):
3333
self.imageId = fittingView.imageList.GetImageIndex("totalPrice_small", "icons")
3434

3535
def getText(self, stuff):
36-
if stuff.item is None:
36+
if stuff.item is None or stuff.item.group.name == "Ship Modifiers":
3737
return ""
3838

3939
sMkt = service.Market.getInstance()

0 commit comments

Comments
 (0)