Fix short label diplay instead of custom interface labels

Fix https://github.com/GNS3/gns3-gui/issues/1742, https://github.com/GNS3/gns3-gui/issues/1752
This commit is contained in:
Julien Duponchelle
2017-01-05 16:55:31 +01:00
parent 12f09829e7
commit c06d2e3118
2 changed files with 28 additions and 0 deletions

View File

@ -50,6 +50,9 @@ class Port:
@property
def short_name(self):
# If port name format has change we use the port name as the short name (1.X behavior)
if not self._name.startswith(self.long_name_type()):
return self._name
return self.short_name_type + "{}/{}".format(self._interface_number, self._port_number)
def __json__(self):