diff --git a/gui/shipBrowser.py b/gui/shipBrowser.py index fdd1c71ba..9156cb584 100644 --- a/gui/shipBrowser.py +++ b/gui/shipBrowser.py @@ -842,7 +842,7 @@ class ShipItem(wx.Window): if shipID: self.shipBmp = bitmapLoader.getBitmap(str(shipID),"ships") if not self.shipBmp: - self.shipBmp = wx.EmptyBitmap(32, 32) + self.shipBmp = bitmapLoader.getBitmap("ship_no_image_big","icons") self.shipFittingInfo = shipFittingInfo self.shipName, self.shipFits = shipFittingInfo @@ -1195,7 +1195,7 @@ class FitItem(wx.Window): if shipID: self.shipBmp = bitmapLoader.getBitmap(str(shipID),"ships") if not self.shipBmp: - self.shipBmp = wx.EmptyBitmap(32, 32) + self.shipBmp = bitmapLoader.getBitmap("ship_no_image_big","icons") self.shipFittingInfo = shipFittingInfo self.shipName, self.fitName, self.timestamp = shipFittingInfo diff --git a/icons/ship_no_image_big.png b/icons/ship_no_image_big.png new file mode 100644 index 000000000..a66606d28 Binary files /dev/null and b/icons/ship_no_image_big.png differ