Fix error when updating a link style. Fixes https://github.com/GNS3/gns3-gui/issues/2461

This commit is contained in:
grossmj 2021-08-24 11:35:33 +09:30
parent 8aada49414
commit c4c71cc838

View File

@ -213,7 +213,6 @@ class Link:
async def update_link_style(self, link_style):
if link_style != self._link_style:
self._link_style = link_style
await self.update()
self._project.emit_notification("link.updated", self.__json__())
self._project.dump()