Comment 5 for bug 1625767

Revision history for this message
Ken Roberts (alisonken1) wrote :

Delete the following lines from the listed files:

lib/projector/pjlink1.py: projectorNetwork = QtCore.pyqtSignal(int) # Projector network activity
lib/projector/pjlink1.py: self.projectorNetwork.emit(S_NETWORK_RECEIVED)
lib/projector/pjlink1.py: self.projectorNetwork.emit(S_NETWORK_SENDING)
lib/projector/pjlink1.py: self.projectorNetwork.emit(S_NETWORK_SENDING)
ui/projector/manager.py: item.link.projectorNetwork.connect(self.update_status)

ui/projector/manager.py:
    try:
        projector.link.projectorNetwork.disconnect(self.update_status)
    except (AttributeError, TypeError):
        pass

These lines were originally put in for network activity for each projector; however, the network activity notification will be changed to a generic network notification for all network activity and these lines are now just noise.