From 60c9640d110cccf1c176794faa1936095b34c91e Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Tue, 22 Nov 2011 18:48:26 +0200 Subject: [PATCH] Show ship name : fit name in gang view --- gui/gangView.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/gangView.py b/gui/gangView.py index fb7068435..20560f1d4 100644 --- a/gui/gangView.py +++ b/gui/gangView.py @@ -183,17 +183,17 @@ class GangView ( ScrolledPanel ): fleetCom, wingCom, squadCom = commanders if fleetCom: - fleetComName = fleetCom.name + fleetComName = fleetCom.ship.item.name + ": " + fleetCom.name else: fleetComName = "None" if wingCom: - wingComName = wingCom.name + wingComName = wingCom.ship.item.name + ": " + wingCom.name else: wingComName = "None" if squadCom: - squadComName = squadCom.name + squadComName = squadCom.ship.item.name + ": " + squadCom.name else: squadComName = "None"