Skip to content

Commit

Permalink
Return None for price column on ship modes, fixes #322
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Jul 9, 2015
1 parent d885bd4 commit 1f82465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/builtinViewColumns/price.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, fittingView, params):
self.imageId = fittingView.imageList.GetImageIndex("totalPrice_small", "icons")

def getText(self, stuff):
if stuff.item is None:
if stuff.item is None or stuff.item.group.name == "Ship Modifiers":
return ""

sMkt = service.Market.getInstance()
Expand Down

0 comments on commit 1f82465

Please sign in to comment.